phcscriptcdnpro 6.0.3 → 7.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/views/layouts/phcscriptcdnpro/components/backend/footer/_footer.html.erb +2 -2
- data/app/views/phcscriptcdnpro/script/authors/_form.html.erb +5 -6
- data/app/views/phcscriptcdnpro/script/authors/edit.html.erb +8 -15
- data/app/views/phcscriptcdnpro/script/authors/index.html.erb +6 -14
- data/app/views/phcscriptcdnpro/script/authors/new.html.erb +8 -15
- data/app/views/phcscriptcdnpro/script/authors/show.html.erb +8 -15
- data/app/views/phcscriptcdnpro/script/extensions/_form.html.erb +5 -6
- data/app/views/phcscriptcdnpro/script/extensions/edit.html.erb +6 -13
- data/app/views/phcscriptcdnpro/script/extensions/index.html.erb +6 -14
- data/app/views/phcscriptcdnpro/script/extensions/new.html.erb +8 -15
- data/app/views/phcscriptcdnpro/script/extensions/show.html.erb +8 -15
- data/app/views/phcscriptcdnpro/script/licences/_form.html.erb +5 -6
- data/app/views/phcscriptcdnpro/script/licences/edit.html.erb +9 -16
- data/app/views/phcscriptcdnpro/script/licences/index.html.erb +6 -14
- data/app/views/phcscriptcdnpro/script/licences/new.html.erb +9 -16
- data/app/views/phcscriptcdnpro/script/licences/show.html.erb +8 -15
- data/app/views/phcscriptcdnpro/script/listings/_form.html.erb +5 -6
- data/app/views/phcscriptcdnpro/script/listings/edit.html.erb +8 -15
- data/app/views/phcscriptcdnpro/script/listings/index.html.erb +6 -15
- data/app/views/phcscriptcdnpro/script/listings/new.html.erb +8 -15
- data/app/views/phcscriptcdnpro/script/listings/show.html.erb +9 -16
- data/app/views/phcscriptcdnpro/script/urls/_form.html.erb +5 -6
- data/app/views/phcscriptcdnpro/script/urls/edit.html.erb +10 -15
- data/app/views/phcscriptcdnpro/script/urls/index.html.erb +6 -15
- data/app/views/phcscriptcdnpro/script/urls/new.html.erb +10 -15
- data/app/views/phcscriptcdnpro/script/urls/show.html.erb +9 -16
- data/app/views/phcscriptcdnpro/script/versions/_form.html.erb +5 -6
- data/app/views/phcscriptcdnpro/script/versions/edit.html.erb +9 -16
- data/app/views/phcscriptcdnpro/script/versions/index.html.erb +9 -15
- data/app/views/phcscriptcdnpro/script/versions/new.html.erb +10 -13
- data/app/views/phcscriptcdnpro/script/versions/show.html.erb +10 -13
- data/lib/phcscriptcdnpro/version.rb +1 -1
- metadata +21 -57
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d71ea38b604ebaa7c6222a808979baa939d6888f
|
4
|
+
data.tar.gz: 4c49583095e3b42865965a88122916350105a820
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1914bba8fe9db09601b4a43511cc18bf1ddad4417cd69605052b139fd6fdfceec8216b1817f22acc43b04506d60fa62f3044ced86bb44d45aea301a8b69775be
|
7
|
+
data.tar.gz: 2d2a913740bd69a548af9aad71d4c9de8c41c6632ac24681a0c9ad5e010eb3a6a4a61b46ae9f749220a53994eeb03da1d4b4b14029281e7c0e186baa9ca12f9b
|
@@ -1,8 +1,8 @@
|
|
1
1
|
<div class="pull-right">
|
2
2
|
<%= link_to "https://phcnetworks.net", target: "_blank", rel: "nofollow" do %>
|
3
|
-
|
3
|
+
PHCScriptCDN by PHCNetworks
|
4
4
|
<% end %>
|
5
5
|
</div>
|
6
6
|
<div>
|
7
|
-
© 2012-<%= Time.now.year %> -
|
7
|
+
© 2012-<%= Time.now.year %> - v7.0.0 - RELEASED - MAR-17-<%= Date.today.year %>
|
8
8
|
</div>
|
@@ -1,10 +1,9 @@
|
|
1
1
|
<%= form_for(script_author) do |f| %>
|
2
2
|
|
3
|
-
<!--
|
3
|
+
<!-- PHCNotifi Render Validation -->
|
4
4
|
<%= render 'phcnotifi/validations', :object => @script_author %>
|
5
|
-
<!-- For Validation by PHCNotifi -->
|
6
5
|
|
7
|
-
<!-- Form Fields -->
|
6
|
+
<!-- Form Input Fields -->
|
8
7
|
<div class="form-group field_with_error">
|
9
8
|
<%= f.label :authorfirstname, "Author First Name" %>
|
10
9
|
<%= f.text_field :authorfirstname, placeholder: "Author First Name", class: "form-control" %>
|
@@ -25,12 +24,12 @@
|
|
25
24
|
<%= f.label :authortwitter, "Author Twitter Addresss" %>
|
26
25
|
<%= f.text_field :authortwitter, placeholder: "Author Twitter Addresss", class: "form-control" %>
|
27
26
|
</div>
|
28
|
-
<!-- Form Fields -->
|
27
|
+
<!-- Form Input Fields -->
|
29
28
|
|
30
|
-
<!-- Form Button -->
|
29
|
+
<!-- Form Submition Button -->
|
31
30
|
<div class="actions">
|
32
31
|
<%= f.submit class: "btn btn-primary" %>
|
33
32
|
</div>
|
34
|
-
<!--
|
33
|
+
<!-- For Submition Button -->
|
35
34
|
|
36
35
|
<% end %>
|
@@ -1,34 +1,27 @@
|
|
1
1
|
<!-- Title System -->
|
2
2
|
<% phc_title "Script Listings Manager" %>
|
3
3
|
<% phc_title_tagline "Update Author Data" %>
|
4
|
+
<% phc_breadcrumb_one link_to "Author Index", phcscriptcdnpro.script_authors_path %>
|
5
|
+
<% phc_breadcrumb_two yield(:phc_title_tagline) %>
|
4
6
|
<!-- Title System -->
|
5
7
|
|
6
8
|
<!-- Page Header -->
|
7
9
|
<div class="row wrapper border-bottom white-bg page-heading">
|
8
|
-
<div class="col-sm-
|
9
|
-
|
10
|
-
<!-- Page Title -->
|
10
|
+
<div class="col-sm-8">
|
11
11
|
<h2><%= yield(:phc_title) %></h2>
|
12
|
-
<!--
|
13
|
-
|
14
|
-
<!-- Bread Crumbs -->
|
12
|
+
<!-- Bread Crumb -->
|
15
13
|
<ol class="breadcrumb">
|
16
|
-
<li><%=
|
17
|
-
<li class="active"><%= yield(:
|
14
|
+
<li><%= yield(:phc_breadcrumb_one) %></li>
|
15
|
+
<li class="active"><%= yield(:phc_breadcrumb_two) %></li>
|
18
16
|
</ol>
|
19
|
-
<!-- Bread
|
20
|
-
|
17
|
+
<!-- Bread Crumb -->
|
21
18
|
</div>
|
22
|
-
<div class="col-sm-
|
23
|
-
|
24
|
-
<!-- Back to Author Index Button -->
|
19
|
+
<div class="col-sm-4">
|
25
20
|
<div class="title-action">
|
26
21
|
<%= link_to phcscriptcdnpro.script_authors_path, class: "btn btn-primary" do %>
|
27
22
|
<i class="fa fa-plus"></i> Back to Author Index
|
28
23
|
<% end %>
|
29
24
|
</div>
|
30
|
-
<!-- Back to Author Index Button -->
|
31
|
-
|
32
25
|
</div>
|
33
26
|
</div>
|
34
27
|
<!-- Page Header -->
|
@@ -1,33 +1,25 @@
|
|
1
1
|
<!-- Title System -->
|
2
2
|
<% phc_title "Script Listings Manager" %>
|
3
3
|
<% phc_title_tagline "Author Index" %>
|
4
|
+
<% phc_breadcrumb_one yield(:phc_title_tagline) %>
|
4
5
|
<!-- Title System -->
|
5
6
|
|
6
7
|
<!-- Page Header -->
|
7
8
|
<div class="row wrapper border-bottom white-bg page-heading">
|
8
|
-
<div class="col-sm-
|
9
|
-
|
10
|
-
<!-- Page Title -->
|
9
|
+
<div class="col-sm-8">
|
11
10
|
<h2><%= yield(:phc_title) %></h2>
|
12
|
-
<!--
|
13
|
-
|
14
|
-
<!-- Bread Crumbs -->
|
11
|
+
<!-- Bread Crumb -->
|
15
12
|
<ol class="breadcrumb">
|
16
|
-
<li class="active"><%= yield(:
|
13
|
+
<li class="active"><%= yield(:phc_breadcrumb_one) %></li>
|
17
14
|
</ol>
|
18
|
-
<!-- Bread
|
19
|
-
|
15
|
+
<!-- Bread Crumb -->
|
20
16
|
</div>
|
21
|
-
<div class="col-sm-
|
22
|
-
|
23
|
-
<!-- New Author Button -->
|
17
|
+
<div class="col-sm-4">
|
24
18
|
<div class="title-action">
|
25
19
|
<%= link_to phcscriptcdnpro.new_script_author_path, class: "btn btn-primary" do %>
|
26
20
|
<i class="fa fa-plus"></i> Add a New Author
|
27
21
|
<% end %>
|
28
22
|
</div>
|
29
|
-
<!-- New Author Button -->
|
30
|
-
|
31
23
|
</div>
|
32
24
|
</div>
|
33
25
|
<!-- Page Header -->
|
@@ -1,34 +1,27 @@
|
|
1
1
|
<!-- Title System -->
|
2
2
|
<% phc_title "Script Listings Manager" %>
|
3
3
|
<% phc_title_tagline "Add a New Author" %>
|
4
|
+
<% phc_breadcrumb_one link_to "Author Index", phcscriptcdnpro.script_authors_path %>
|
5
|
+
<% phc_breadcrumb_two yield(:phc_title_tagline) %>
|
4
6
|
<!-- Title System -->
|
5
7
|
|
6
8
|
<!-- Page Header -->
|
7
9
|
<div class="row wrapper border-bottom white-bg page-heading">
|
8
|
-
<div class="col-sm-
|
9
|
-
|
10
|
-
<!-- Page Title -->
|
10
|
+
<div class="col-sm-8">
|
11
11
|
<h2><%= yield(:phc_title) %></h2>
|
12
|
-
<!--
|
13
|
-
|
14
|
-
<!-- Bread Crumbs -->
|
12
|
+
<!-- Bread Crumb -->
|
15
13
|
<ol class="breadcrumb">
|
16
|
-
<li><%=
|
17
|
-
<li class="active"><%= yield(:
|
14
|
+
<li><%= yield(:phc_breadcrumb_one) %></li>
|
15
|
+
<li class="active"><%= yield(:phc_breadcrumb_two) %></li>
|
18
16
|
</ol>
|
19
|
-
<!-- Bread
|
20
|
-
|
17
|
+
<!-- Bread Crumb -->
|
21
18
|
</div>
|
22
|
-
<div class="col-sm-
|
23
|
-
|
24
|
-
<!-- Back to Author Index Button -->
|
19
|
+
<div class="col-sm-4">
|
25
20
|
<div class="title-action">
|
26
21
|
<%= link_to phcscriptcdnpro.script_authors_path, class: "btn btn-primary" do %>
|
27
22
|
<i class="fa fa-plus"></i> Back to Author Index
|
28
23
|
<% end %>
|
29
24
|
</div>
|
30
|
-
<!-- Back to Author Index Button -->
|
31
|
-
|
32
25
|
</div>
|
33
26
|
</div>
|
34
27
|
<!-- Page Header -->
|
@@ -1,34 +1,27 @@
|
|
1
1
|
<!-- Title System -->
|
2
2
|
<% phc_title "Script Listings Manager" %>
|
3
3
|
<% phc_title_tagline "Script Author Profile" %>
|
4
|
+
<% phc_breadcrumb_one link_to "Author Index", phcscriptcdnpro.script_authors_path %>
|
5
|
+
<% phc_breadcrumb_two yield(:phc_title_tagline) %>
|
4
6
|
<!-- Title System -->
|
5
7
|
|
6
8
|
<!-- Page Header -->
|
7
9
|
<div class="row wrapper border-bottom white-bg page-heading">
|
8
|
-
<div class="col-sm-
|
9
|
-
|
10
|
-
<!-- Page Title -->
|
10
|
+
<div class="col-sm-8">
|
11
11
|
<h2><%= yield(:phc_title) %></h2>
|
12
|
-
<!--
|
13
|
-
|
14
|
-
<!-- Bread Crumbs -->
|
12
|
+
<!-- Bread Crumb -->
|
15
13
|
<ol class="breadcrumb">
|
16
|
-
<li><%=
|
17
|
-
<li class="active"><%= yield(:
|
14
|
+
<li><%= yield(:phc_breadcrumb_one) %></li>
|
15
|
+
<li class="active"><%= yield(:phc_breadcrumb_two) %></li>
|
18
16
|
</ol>
|
19
|
-
<!-- Bread
|
20
|
-
|
17
|
+
<!-- Bread Crumb -->
|
21
18
|
</div>
|
22
|
-
<div class="col-sm-
|
23
|
-
|
24
|
-
<!-- Back to Author Index Button -->
|
19
|
+
<div class="col-sm-4">
|
25
20
|
<div class="title-action">
|
26
21
|
<%= link_to phcscriptcdnpro.script_authors_path, class: "btn btn-primary" do %>
|
27
22
|
<i class="fa fa-plus"></i> Back to Author Index
|
28
23
|
<% end %>
|
29
24
|
</div>
|
30
|
-
<!-- Back to Author Index Button -->
|
31
|
-
|
32
25
|
</div>
|
33
26
|
</div>
|
34
27
|
<!-- Page Header -->
|
@@ -1,10 +1,9 @@
|
|
1
1
|
<%= form_for(script_extension) do |f| %>
|
2
2
|
|
3
|
-
<!--
|
3
|
+
<!-- PHCNotifi Render Validation -->
|
4
4
|
<%= render 'phcnotifi/validations', :object => @script_extension %>
|
5
|
-
<!-- For Validation by PHCNotifi -->
|
6
5
|
|
7
|
-
<!-- Form Fields -->
|
6
|
+
<!-- Form Input Fields -->
|
8
7
|
<div class="form-group field_with_error">
|
9
8
|
<%= f.label :scriptextensionname, "Extension Name" %>
|
10
9
|
<%= f.text_field :scriptextensionname, placeholder: "Extension Name", class: "form-control" %>
|
@@ -17,12 +16,12 @@
|
|
17
16
|
<%= f.label :scriptextension, "Script Extension" %>
|
18
17
|
<%= f.text_field :scriptextension, placeholder: "Script Extension (.js/.css)", class: "form-control" %>
|
19
18
|
</div>
|
20
|
-
<!-- Form Fields -->
|
19
|
+
<!-- Form Input Fields -->
|
21
20
|
|
22
|
-
<!-- Form Button -->
|
21
|
+
<!-- Form Submition Button -->
|
23
22
|
<div class="actions">
|
24
23
|
<%= f.submit class: "btn btn-primary" %>
|
25
24
|
</div>
|
26
|
-
<!--
|
25
|
+
<!-- For Submition Button -->
|
27
26
|
|
28
27
|
<% end %>
|
@@ -1,34 +1,27 @@
|
|
1
1
|
<!-- Title System -->
|
2
2
|
<% phc_title "Script Listings Manager" %>
|
3
3
|
<% phc_title_tagline "Update Script Extension" %>
|
4
|
+
<% phc_breadcrumb_one link_to "Script Extension Index", phcscriptcdnpro.script_extensions_path %>
|
5
|
+
<% phc_breadcrumb_two yield(:phc_title_tagline) %>
|
4
6
|
<!-- Title System -->
|
5
7
|
|
6
8
|
<!-- Page Header -->
|
7
9
|
<div class="row wrapper border-bottom white-bg page-heading">
|
8
|
-
<div class="col-sm-
|
9
|
-
|
10
|
-
<!-- Page Title -->
|
10
|
+
<div class="col-sm-8">
|
11
11
|
<h2><%= yield(:phc_title) %></h2>
|
12
|
-
<!-- Page Title -->
|
13
|
-
|
14
12
|
<!-- Bread Crumb -->
|
15
13
|
<ol class="breadcrumb">
|
16
|
-
<li><%=
|
17
|
-
<li class="active"><%= yield(:
|
14
|
+
<li><%= yield(:phc_breadcrumb_one) %></li>
|
15
|
+
<li class="active"><%= yield(:phc_breadcrumb_two) %></li>
|
18
16
|
</ol>
|
19
17
|
<!-- Bread Crumb -->
|
20
|
-
|
21
18
|
</div>
|
22
|
-
<div class="col-sm-
|
23
|
-
|
24
|
-
<!-- Back to Extensions Index Button -->
|
19
|
+
<div class="col-sm-4">
|
25
20
|
<div class="title-action">
|
26
21
|
<%= link_to phcscriptcdnpro.script_extensions_path, class: "btn btn-primary" do %>
|
27
22
|
<i class="fa fa-plus"></i> Back to Script Licence Index
|
28
23
|
<% end %>
|
29
24
|
</div>
|
30
|
-
<!-- Back to Extensions Index Button -->
|
31
|
-
|
32
25
|
</div>
|
33
26
|
</div>
|
34
27
|
<!-- Page Header -->
|
@@ -1,33 +1,25 @@
|
|
1
1
|
<!-- Title System -->
|
2
2
|
<% phc_title "Script Listings Manager" %>
|
3
3
|
<% phc_title_tagline "Script Extension Index" %>
|
4
|
+
<% phc_breadcrumb_one yield(:phc_title_tagline) %>
|
4
5
|
<!-- Title System -->
|
5
6
|
|
6
7
|
<!-- Page Header -->
|
7
8
|
<div class="row wrapper border-bottom white-bg page-heading">
|
8
|
-
<div class="col-sm-
|
9
|
-
|
10
|
-
<!-- Page Title -->
|
9
|
+
<div class="col-sm-8">
|
11
10
|
<h2><%= yield(:phc_title) %></h2>
|
12
|
-
<!--
|
13
|
-
|
14
|
-
<!-- Bread Crumbs -->
|
11
|
+
<!-- Bread Crumb -->
|
15
12
|
<ol class="breadcrumb">
|
16
|
-
<li class="active"><%= yield(:
|
13
|
+
<li class="active"><%= yield(:phc_breadcrumb_one) %></li>
|
17
14
|
</ol>
|
18
|
-
<!-- Bread
|
19
|
-
|
15
|
+
<!-- Bread Crumb -->
|
20
16
|
</div>
|
21
|
-
<div class="col-sm-
|
22
|
-
|
23
|
-
<!-- New Script Extensions -->
|
17
|
+
<div class="col-sm-4">
|
24
18
|
<div class="title-action">
|
25
19
|
<%= link_to phcscriptcdnpro.new_script_extension_path, class: "btn btn-primary" do %>
|
26
20
|
<i class="fa fa-plus"></i> Add a New Script Extension
|
27
21
|
<% end %>
|
28
22
|
</div>
|
29
|
-
<!-- New Script Extensions -->
|
30
|
-
|
31
23
|
</div>
|
32
24
|
</div>
|
33
25
|
<!-- Page Header -->
|
@@ -1,34 +1,27 @@
|
|
1
1
|
<!-- Title System -->
|
2
2
|
<% phc_title "Script Listings Manager" %>
|
3
3
|
<% phc_title_tagline "Add a Script Extension" %>
|
4
|
+
<% phc_breadcrumb_one link_to "Script Extension Index", phcscriptcdnpro.script_extensions_path %>
|
5
|
+
<% phc_breadcrumb_two yield(:phc_title_tagline) %>
|
4
6
|
<!-- Title System -->
|
5
7
|
|
6
8
|
<!-- Page Header -->
|
7
9
|
<div class="row wrapper border-bottom white-bg page-heading">
|
8
|
-
<div class="col-sm-
|
9
|
-
|
10
|
-
<!-- Page Title -->
|
10
|
+
<div class="col-sm-8">
|
11
11
|
<h2><%= yield(:phc_title) %></h2>
|
12
|
-
<!--
|
13
|
-
|
14
|
-
<!-- Bread Crumbs -->
|
12
|
+
<!-- Bread Crumb -->
|
15
13
|
<ol class="breadcrumb">
|
16
|
-
<li><%=
|
17
|
-
<li class="active"><%= yield(:
|
14
|
+
<li><%= yield(:phc_breadcrumb_one) %></li>
|
15
|
+
<li class="active"><%= yield(:phc_breadcrumb_two) %></li>
|
18
16
|
</ol>
|
19
|
-
<!-- Bread
|
20
|
-
|
17
|
+
<!-- Bread Crumb -->
|
21
18
|
</div>
|
22
|
-
<div class="col-sm-
|
23
|
-
|
24
|
-
<!-- Back to Extensions Index Button -->
|
19
|
+
<div class="col-sm-4">
|
25
20
|
<div class="title-action">
|
26
21
|
<%= link_to phcscriptcdnpro.script_extensions_path, class: "btn btn-primary" do %>
|
27
22
|
<i class="fa fa-plus"></i> Back to Script Licence Index
|
28
23
|
<% end %>
|
29
24
|
</div>
|
30
|
-
<!-- Back to Extensions Index Button -->
|
31
|
-
|
32
25
|
</div>
|
33
26
|
</div>
|
34
27
|
<!-- Page Header -->
|
@@ -1,34 +1,27 @@
|
|
1
1
|
<!-- Title System -->
|
2
2
|
<% phc_title "Script Listings Manager" %>
|
3
3
|
<% phc_title_tagline "Script Extension Details" %>
|
4
|
+
<% phc_breadcrumb_one link_to "Script Extension Index", phcscriptcdnpro.script_extensions_path %>
|
5
|
+
<% phc_breadcrumb_two yield(:phc_title_tagline) %>
|
4
6
|
<!-- Title System -->
|
5
7
|
|
6
8
|
<!-- Page Header -->
|
7
9
|
<div class="row wrapper border-bottom white-bg page-heading">
|
8
|
-
<div class="col-sm-
|
9
|
-
|
10
|
-
<!-- Page Title -->
|
10
|
+
<div class="col-sm-8">
|
11
11
|
<h2><%= yield(:phc_title) %></h2>
|
12
|
-
<!--
|
13
|
-
|
14
|
-
<!-- Bread Crumbs -->
|
12
|
+
<!-- Bread Crumb -->
|
15
13
|
<ol class="breadcrumb">
|
16
|
-
<li><%=
|
17
|
-
<li class="active"><%= yield(:
|
14
|
+
<li><%= yield(:phc_breadcrumb_one) %></li>
|
15
|
+
<li class="active"><%= yield(:phc_breadcrumb_two) %></li>
|
18
16
|
</ol>
|
19
|
-
<!-- Bread
|
20
|
-
|
17
|
+
<!-- Bread Crumb -->
|
21
18
|
</div>
|
22
|
-
<div class="col-sm-
|
23
|
-
|
24
|
-
<!-- Back to Extensions Index Button -->
|
19
|
+
<div class="col-sm-4">
|
25
20
|
<div class="title-action">
|
26
21
|
<%= link_to phcscriptcdnpro.script_extensions_path, class: "btn btn-primary" do %>
|
27
22
|
<i class="fa fa-plus"></i> Back to Script Licence Index
|
28
23
|
<% end %>
|
29
24
|
</div>
|
30
|
-
<!-- Back to Extensions Index Button -->
|
31
|
-
|
32
25
|
</div>
|
33
26
|
</div>
|
34
27
|
<!-- Page Header -->
|
@@ -1,10 +1,9 @@
|
|
1
1
|
<%= form_for(script_licence) do |f| %>
|
2
2
|
|
3
|
-
<!--
|
3
|
+
<!-- PHCNotifi Render Validation -->
|
4
4
|
<%= render 'phcnotifi/validations', :object => @script_licence %>
|
5
|
-
<!-- For Validation by PHCNotifi -->
|
6
5
|
|
7
|
-
<!-- Form Fields -->
|
6
|
+
<!-- Form Input Fields -->
|
8
7
|
<div class="form-group field_with_error">
|
9
8
|
<%= f.label :lcncname, "Licence Name" %>
|
10
9
|
<%= f.text_field :lcncname, placeholder: "Licence Name", class: "form-control" %>
|
@@ -37,12 +36,12 @@
|
|
37
36
|
<%= f.label :lcncarvlfedora, "Fedora Approval" %>
|
38
37
|
<%= f.select( :lcncarvlfedora, [['No','No'],['Yes','Yes']], {}, {class: "form-control"}) %>
|
39
38
|
</div>
|
40
|
-
<!-- Form Fields -->
|
39
|
+
<!-- Form Input Fields -->
|
41
40
|
|
42
|
-
<!-- Form Button -->
|
41
|
+
<!-- Form Submition Button -->
|
43
42
|
<div class="actions">
|
44
43
|
<%= f.submit class: "btn btn-primary" %>
|
45
44
|
</div>
|
46
|
-
<!--
|
45
|
+
<!-- For Submition Button -->
|
47
46
|
|
48
47
|
<% end %>
|
@@ -1,34 +1,27 @@
|
|
1
1
|
<!-- Title System -->
|
2
2
|
<% phc_title "Script Listings Manager" %>
|
3
3
|
<% phc_title_tagline "Update Script Licence Information" %>
|
4
|
+
<% phc_breadcrumb_one link_to "Script Licence Index", phcscriptcdnpro.script_licences_path %>
|
5
|
+
<% phc_breadcrumb_two yield(:phc_title_tagline) %>
|
4
6
|
<!-- Title System -->
|
5
7
|
|
6
8
|
<!-- Page Header -->
|
7
9
|
<div class="row wrapper border-bottom white-bg page-heading">
|
8
|
-
<div class="col-sm-
|
9
|
-
|
10
|
-
<!-- Page Title -->
|
10
|
+
<div class="col-sm-8">
|
11
11
|
<h2><%= yield(:phc_title) %></h2>
|
12
|
-
<!--
|
13
|
-
|
14
|
-
<!-- Bread Crumbs -->
|
12
|
+
<!-- Bread Crumb -->
|
15
13
|
<ol class="breadcrumb">
|
16
|
-
<li><%=
|
17
|
-
<li class="active"><%= yield(:
|
14
|
+
<li><%= yield(:phc_breadcrumb_one) %></li>
|
15
|
+
<li class="active"><%= yield(:phc_breadcrumb_two) %></li>
|
18
16
|
</ol>
|
19
|
-
<!-- Bread
|
20
|
-
|
17
|
+
<!-- Bread Crumb -->
|
21
18
|
</div>
|
22
|
-
<div class="col-sm-
|
23
|
-
|
24
|
-
<!-- Back to Licence Index Button -->
|
19
|
+
<div class="col-sm-4">
|
25
20
|
<div class="title-action">
|
26
21
|
<%= link_to phcscriptcdnpro.script_licences_path, class: "btn btn-primary" do %>
|
27
22
|
<i class="fa fa-plus"></i> Back to Script Licence Index
|
28
23
|
<% end %>
|
29
24
|
</div>
|
30
|
-
<!-- Back to Licence Index Button -->
|
31
|
-
|
32
25
|
</div>
|
33
26
|
</div>
|
34
27
|
<!-- Page Header -->
|
@@ -61,4 +54,4 @@
|
|
61
54
|
</div>
|
62
55
|
</div>
|
63
56
|
</div>
|
64
|
-
<!-- Page Content -->
|
57
|
+
<!-- Page Content -->
|
@@ -1,33 +1,25 @@
|
|
1
1
|
<!-- Title System -->
|
2
2
|
<% phc_title "Script Listings Manager" %>
|
3
3
|
<% phc_title_tagline "Script Licence Index" %>
|
4
|
+
<% phc_breadcrumb_one yield(:phc_title_tagline) %>
|
4
5
|
<!-- Title System -->
|
5
6
|
|
6
7
|
<!-- Page Header -->
|
7
8
|
<div class="row wrapper border-bottom white-bg page-heading">
|
8
|
-
<div class="col-sm-
|
9
|
-
|
10
|
-
<!-- Page Title -->
|
9
|
+
<div class="col-sm-8">
|
11
10
|
<h2><%= yield(:phc_title) %></h2>
|
12
|
-
<!--
|
13
|
-
|
14
|
-
<!-- Bread Crumbs -->
|
11
|
+
<!-- Bread Crumb -->
|
15
12
|
<ol class="breadcrumb">
|
16
|
-
<li class="active"><%= yield(:
|
13
|
+
<li class="active"><%= yield(:phc_breadcrumb_one) %></li>
|
17
14
|
</ol>
|
18
|
-
<!-- Bread
|
19
|
-
|
15
|
+
<!-- Bread Crumb -->
|
20
16
|
</div>
|
21
|
-
<div class="col-sm-
|
22
|
-
|
23
|
-
<!-- New Licence Button -->
|
17
|
+
<div class="col-sm-4">
|
24
18
|
<div class="title-action">
|
25
19
|
<%= link_to phcscriptcdnpro.new_script_licence_path, class: "btn btn-primary" do %>
|
26
20
|
<i class="fa fa-plus"></i> Create a New Script Licence
|
27
21
|
<% end %>
|
28
22
|
</div>
|
29
|
-
<!-- New Licence Button -->
|
30
|
-
|
31
23
|
</div>
|
32
24
|
</div>
|
33
25
|
<!-- Page Header -->
|
@@ -1,34 +1,27 @@
|
|
1
1
|
<!-- Title System -->
|
2
2
|
<% phc_title "Script Listings Manager" %>
|
3
3
|
<% phc_title_tagline "Create a New Script Licence" %>
|
4
|
+
<% phc_breadcrumb_one link_to "Script Licence Index", phcscriptcdnpro.script_licences_path %>
|
5
|
+
<% phc_breadcrumb_two yield(:phc_title_tagline) %>
|
4
6
|
<!-- Title System -->
|
5
7
|
|
6
8
|
<!-- Page Header -->
|
7
9
|
<div class="row wrapper border-bottom white-bg page-heading">
|
8
|
-
<div class="col-sm-
|
9
|
-
|
10
|
-
<!-- Page Title -->
|
10
|
+
<div class="col-sm-8">
|
11
11
|
<h2><%= yield(:phc_title) %></h2>
|
12
|
-
<!--
|
13
|
-
|
14
|
-
<!-- Bread Crumbs -->
|
12
|
+
<!-- Bread Crumb -->
|
15
13
|
<ol class="breadcrumb">
|
16
|
-
<li><%=
|
17
|
-
<li class="active"><%= yield(:
|
14
|
+
<li><%= yield(:phc_breadcrumb_one) %></li>
|
15
|
+
<li class="active"><%= yield(:phc_breadcrumb_two) %></li>
|
18
16
|
</ol>
|
19
|
-
<!-- Bread
|
20
|
-
|
17
|
+
<!-- Bread Crumb -->
|
21
18
|
</div>
|
22
|
-
<div class="col-sm-
|
23
|
-
|
24
|
-
<!-- Back to Licence Index Button -->
|
19
|
+
<div class="col-sm-4">
|
25
20
|
<div class="title-action">
|
26
21
|
<%= link_to phcscriptcdnpro.script_licences_path, class: "btn btn-primary" do %>
|
27
22
|
<i class="fa fa-plus"></i> Back to Script Licence Index
|
28
23
|
<% end %>
|
29
24
|
</div>
|
30
|
-
<!-- Back to Licence Index Button -->
|
31
|
-
|
32
25
|
</div>
|
33
26
|
</div>
|
34
27
|
<!-- Page Header -->
|
@@ -61,4 +54,4 @@
|
|
61
54
|
</div>
|
62
55
|
</div>
|
63
56
|
</div>
|
64
|
-
<!-- Page Content -->
|
57
|
+
<!-- Page Content -->
|
@@ -1,34 +1,27 @@
|
|
1
1
|
<!-- Title System -->
|
2
2
|
<% phc_title "Script Listings Manager" %>
|
3
3
|
<% phc_title_tagline "Script Licence Details" %>
|
4
|
+
<% phc_breadcrumb_one link_to "Script Licence Index", phcscriptcdnpro.script_licences_path %>
|
5
|
+
<% phc_breadcrumb_two yield(:phc_title_tagline) %>
|
4
6
|
<!-- Title System -->
|
5
7
|
|
6
8
|
<!-- Page Header -->
|
7
9
|
<div class="row wrapper border-bottom white-bg page-heading">
|
8
|
-
<div class="col-sm-
|
9
|
-
|
10
|
-
<!-- Page Title -->
|
10
|
+
<div class="col-sm-8">
|
11
11
|
<h2><%= yield(:phc_title) %></h2>
|
12
|
-
<!--
|
13
|
-
|
14
|
-
<!-- Bread Crumbs -->
|
12
|
+
<!-- Bread Crumb -->
|
15
13
|
<ol class="breadcrumb">
|
16
|
-
<li><%=
|
17
|
-
<li class="active"><%= yield(:
|
14
|
+
<li><%= yield(:phc_breadcrumb_one) %></li>
|
15
|
+
<li class="active"><%= yield(:phc_breadcrumb_two) %></li>
|
18
16
|
</ol>
|
19
|
-
<!-- Bread
|
20
|
-
|
17
|
+
<!-- Bread Crumb -->
|
21
18
|
</div>
|
22
|
-
<div class="col-sm-
|
23
|
-
|
24
|
-
<!-- Back to Licence Index Button -->
|
19
|
+
<div class="col-sm-4">
|
25
20
|
<div class="title-action">
|
26
21
|
<%= link_to phcscriptcdnpro.script_licences_path, class: "btn btn-primary" do %>
|
27
22
|
<i class="fa fa-plus"></i> Back to Script Licence Index
|
28
23
|
<% end %>
|
29
24
|
</div>
|
30
|
-
<!-- Back to Licence Index Button -->
|
31
|
-
|
32
25
|
</div>
|
33
26
|
</div>
|
34
27
|
<!-- Page Header -->
|