phcscriptcdnpro 1.8.9 → 1.8.10
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 749d29945fb0d44e194721f3c3e794dd99280bee
|
4
|
+
data.tar.gz: ff12ec39a5afae0561a03485ac92bc1d1cb7d2f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dc136df72446a9c38c0937a3ee41ae1e8bf7592bd197024b160b81bab152c115bf1fb61c3711a5cbcefcc7f632ac359c61d70f421df250e24795dc47f1f728fe
|
7
|
+
data.tar.gz: 6258943bc42b5c7c948f8b69b3cef1667b5e389d214d7fc562a72431c00eee8a36487645cf947eb21a827544b0f0e30a393cee6cb81ea1930600692c11ee70db
|
@@ -3,40 +3,44 @@
|
|
3
3
|
<%= render 'phcnotifi/validations', :object => @scriptcdn_information %>
|
4
4
|
|
5
5
|
<div class="form-group field_with_error">
|
6
|
-
<%= f.label :scripttitle %>
|
6
|
+
<%= f.label :scripttitle, "Script Title" %>
|
7
7
|
<%= f.text_field :scripttitle, placeholder: "Script Information Title", class: "form-control" %>
|
8
8
|
</div>
|
9
9
|
<div class="form-group field_with_error">
|
10
|
-
<%= f.label :scriptdescription %>
|
10
|
+
<%= f.label :scriptdescription, "Script Description" %>
|
11
11
|
<%= f.text_field :scriptdescription, placeholder: "Script Information Description", class: "form-control" %>
|
12
12
|
</div>
|
13
13
|
<div class="form-group field_with_error">
|
14
|
-
<%= f.label :scriptcategory %>
|
15
|
-
<%= f.
|
16
|
-
</div>
|
14
|
+
<%= f.label :scriptcategory, "Script Category" %>
|
15
|
+
<%= f.select( :scriptcategory, [['HTML','html'],['CSS','css']], {}, {class: "form-control form-control-sm"}),:multiple => true, :size =>10 %>
|
16
|
+
</div>
|
17
17
|
<div class="form-group field_with_error">
|
18
|
-
<%= f.label :scriptwebsite %>
|
18
|
+
<%= f.label :scriptwebsite, "Script Website" %>
|
19
19
|
<%= f.text_field :scriptwebsite, placeholder: "Script Information Website", class: "form-control" %>
|
20
20
|
</div>
|
21
21
|
<div class="form-group field_with_error">
|
22
|
-
<%= f.label :scripttwitter %>
|
22
|
+
<%= f.label :scripttwitter, "Script Twitter" %>
|
23
23
|
<%= f.text_field :scripttwitter, placeholder: "Script Information Twitter Address", class: "form-control" %>
|
24
24
|
</div>
|
25
25
|
<div class="form-group field_with_error">
|
26
|
-
<%= f.label :scriptgithub %>
|
26
|
+
<%= f.label :scriptgithub, "Script Github" %>
|
27
27
|
<%= f.text_field :scriptgithub, placeholder: "Script Information Github Address", class: "form-control" %>
|
28
28
|
</div>
|
29
29
|
<div class="form-group field_with_error">
|
30
|
-
<%= f.label :scriptinitialrelease %>
|
30
|
+
<%= f.label :scriptinitialrelease, "Initial Release" %>
|
31
31
|
<%= f.text_field :scriptinitialrelease, placeholder: "Script Information Initial Release", class: "form-control" %>
|
32
32
|
</div>
|
33
33
|
<div class="form-group field_with_error">
|
34
|
-
<%= f.label :scriptlicence %>
|
35
|
-
<%= f.
|
34
|
+
<%= f.label :scriptlicence, "Script Licence" %>
|
35
|
+
<%= f.select( :scriptlicence, [['MIT','MIT'],['Apache 2.0','Apache v2']], {}, {class: "form-control form-control-sm"}) %>
|
36
|
+
</div>
|
37
|
+
<div class="form-group field_with_error">
|
38
|
+
<%= f.label :scriptplatform, "Script Platform" %>
|
39
|
+
<%= f.select( :scriptplatform, [['Web Engine','Web Engine']], {}, {class: "form-control form-control-sm"}) %>
|
36
40
|
</div>
|
37
41
|
<div class="form-group field_with_error">
|
38
|
-
<%= f.label :
|
39
|
-
<%= f.
|
42
|
+
<%= f.label :scriptstatus, "Script Status" %>
|
43
|
+
<%= f.select( :scriptstatus, [['Active','Active'],['Outdated','Out Dated'],['Deactivated','Not Active']], {}, {class: "form-control form-control-sm"}) %>
|
40
44
|
</div>
|
41
45
|
<div class="form-group field_with_error">
|
42
46
|
<%= f.submit class: "btn blue-hoki" %>
|
@@ -11,6 +11,7 @@ class CreatePhcscriptcdnproScriptcdnInformation < ActiveRecord::Migration
|
|
11
11
|
t.string :scriptinitialrelease
|
12
12
|
t.string :scriptlicence
|
13
13
|
t.string :scriptplatform
|
14
|
+
t.string :scriptstatus
|
14
15
|
|
15
16
|
t.references :version, index: true
|
16
17
|
t.references :main, index: true
|