kuppayam 0.2.7.pre.materialize → 0.2.8.pre.materialize
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/javascripts/kuppayam-bootstrap4.js +18 -0
- data/app/assets/stylesheets/bootstrap4/categories.css +0 -0
- data/app/assets/stylesheets/bootstrap4/dashboard.css +107 -0
- data/app/assets/stylesheets/bootstrap4/general.css +0 -0
- data/app/assets/stylesheets/bootstrap4/pages.css +0 -0
- data/app/assets/stylesheets/kuppayam-bootstrap4.css +18 -0
- data/app/controllers/kuppayam/base_controller.rb +9 -24
- data/app/views/layouts/dashboard/bootstrap4/_items.html.erb +20 -0
- data/app/views/layouts/dashboard/{_items.html.erb → materialize/_items.html.erb} +0 -0
- data/app/views/layouts/dashboard/xenon/_items.html.erb +20 -0
- data/app/views/layouts/kuppayam/bootstrap4/401.html.erb +0 -0
- data/app/views/layouts/kuppayam/bootstrap4/_blank_with_nav.html.erb +0 -0
- data/app/views/layouts/kuppayam/bootstrap4/_footer.html.erb +0 -0
- data/app/views/layouts/kuppayam/bootstrap4/_head.html.erb +35 -0
- data/app/views/layouts/kuppayam/bootstrap4/_header.html.erb +45 -0
- data/app/views/layouts/kuppayam/bootstrap4/_heading.html.erb +11 -0
- data/app/views/layouts/kuppayam/bootstrap4/_navbar.html.erb +9 -0
- data/app/views/layouts/kuppayam/bootstrap4/_permission_denied.html.erb +26 -0
- data/app/views/layouts/kuppayam/bootstrap4/_sidebar.html.erb +64 -0
- data/app/views/layouts/kuppayam/bootstrap4/admin.html.erb +113 -0
- data/app/views/layouts/kuppayam/bootstrap4/blank.html.erb +0 -0
- data/app/views/layouts/kuppayam/bootstrap4/image_upload.html.erb +17 -0
- data/app/views/layouts/kuppayam/bootstrap4/login.html.erb +0 -0
- data/app/views/layouts/kuppayam/bootstrap4/temp.html.erb +84 -0
- data/app/views/layouts/kuppayam/materialize/_head.html.erb +18 -25
- data/app/views/layouts/kuppayam/xenon/_head.html.erb +17 -22
- data/config/initializers/importer.rb +1 -4
- data/lib/kuppayam/version.rb +1 -1
- metadata +25 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6057ab5348db3c7cfaccdf53e2d898a49e840ceb4de7c0869aef6c955a390f5a
|
4
|
+
data.tar.gz: cfae793f481062bda1620e6932f876137ec89684fb9c2ba91bfce7c62baefabf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e3f15ae793ea8e7c73b912a3791e9cf8970c2260e1333209b8ab335b89c83d496233b94e27b0a4d55ea8a71ff26b1dad4167da17f4308ea50c3eab0374f1c1a
|
7
|
+
data.tar.gz: 0ab70e30745509e934bc83cb522219a91dddba5dc6efd344b0263a51e6110c470be9c7966d563a004b81e58f38c4d1743d2c2292049a738f0fee8215fcfb5f51
|
@@ -0,0 +1,18 @@
|
|
1
|
+
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
2
|
+
// listed below.
|
3
|
+
//
|
4
|
+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
5
|
+
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
|
6
|
+
//
|
7
|
+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
8
|
+
// compiled file. JavaScript code in this file should be added after the last require_* statement.
|
9
|
+
//
|
10
|
+
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
|
11
|
+
// about supported directives.
|
12
|
+
//
|
13
|
+
//= require jquery3
|
14
|
+
//= require jquery_ujs
|
15
|
+
//= require jquery.validate.min.js
|
16
|
+
//= require kuppayam/utilities.js
|
17
|
+
|
18
|
+
|
File without changes
|
@@ -0,0 +1,107 @@
|
|
1
|
+
body {
|
2
|
+
font-size: .875rem;
|
3
|
+
}
|
4
|
+
|
5
|
+
.feather {
|
6
|
+
width: 16px;
|
7
|
+
height: 16px;
|
8
|
+
vertical-align: text-bottom;
|
9
|
+
}
|
10
|
+
|
11
|
+
/*
|
12
|
+
* Sidebar
|
13
|
+
*/
|
14
|
+
|
15
|
+
.sidebar {
|
16
|
+
position: fixed;
|
17
|
+
top: 0;
|
18
|
+
bottom: 0;
|
19
|
+
left: 0;
|
20
|
+
z-index: 100; /* Behind the navbar */
|
21
|
+
padding: 48px 0 0; /* Height of navbar */
|
22
|
+
box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
|
23
|
+
}
|
24
|
+
|
25
|
+
.sidebar-sticky {
|
26
|
+
position: relative;
|
27
|
+
top: 0;
|
28
|
+
height: calc(100vh - 48px);
|
29
|
+
padding-top: .5rem;
|
30
|
+
overflow-x: hidden;
|
31
|
+
overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
|
32
|
+
}
|
33
|
+
|
34
|
+
@supports ((position: -webkit-sticky) or (position: sticky)) {
|
35
|
+
.sidebar-sticky {
|
36
|
+
position: -webkit-sticky;
|
37
|
+
position: sticky;
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
.sidebar .nav-link {
|
42
|
+
font-weight: 500;
|
43
|
+
color: #333;
|
44
|
+
}
|
45
|
+
|
46
|
+
.sidebar .nav-link .feather {
|
47
|
+
margin-right: 4px;
|
48
|
+
color: #999;
|
49
|
+
}
|
50
|
+
|
51
|
+
.sidebar .nav-link.active {
|
52
|
+
color: #007bff;
|
53
|
+
}
|
54
|
+
|
55
|
+
.sidebar .nav-link:hover .feather,
|
56
|
+
.sidebar .nav-link.active .feather {
|
57
|
+
color: inherit;
|
58
|
+
}
|
59
|
+
|
60
|
+
.sidebar-heading {
|
61
|
+
font-size: .75rem;
|
62
|
+
text-transform: uppercase;
|
63
|
+
}
|
64
|
+
|
65
|
+
/*
|
66
|
+
* Content
|
67
|
+
*/
|
68
|
+
|
69
|
+
[role="main"] {
|
70
|
+
padding-top: 48px; /* Space for fixed navbar */
|
71
|
+
}
|
72
|
+
|
73
|
+
/*
|
74
|
+
* Navbar
|
75
|
+
*/
|
76
|
+
|
77
|
+
.navbar-brand {
|
78
|
+
padding-top: .75rem;
|
79
|
+
padding-bottom: .75rem;
|
80
|
+
font-size: 1rem;
|
81
|
+
background-color: rgba(0, 0, 0, .25);
|
82
|
+
box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
|
83
|
+
}
|
84
|
+
|
85
|
+
.navbar .form-control {
|
86
|
+
padding: .75rem 1rem;
|
87
|
+
border-width: 0;
|
88
|
+
border-radius: 0;
|
89
|
+
}
|
90
|
+
|
91
|
+
.form-control-dark {
|
92
|
+
color: #fff;
|
93
|
+
background-color: rgba(255, 255, 255, .1);
|
94
|
+
border-color: rgba(255, 255, 255, .1);
|
95
|
+
}
|
96
|
+
|
97
|
+
.form-control-dark:focus {
|
98
|
+
border-color: transparent;
|
99
|
+
box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
|
100
|
+
}
|
101
|
+
|
102
|
+
/*
|
103
|
+
* Utilities
|
104
|
+
*/
|
105
|
+
|
106
|
+
.border-top { border-top: 1px solid #e5e5e5; }
|
107
|
+
.border-bottom { border-bottom: 1px solid #e5e5e5; }
|
File without changes
|
File without changes
|
@@ -0,0 +1,18 @@
|
|
1
|
+
/*
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
3
|
+
* listed below.
|
4
|
+
*
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
6
|
+
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
|
7
|
+
*
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
9
|
+
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
|
10
|
+
* files in this directory. Styles in this file should be added after the last require_* statement.
|
11
|
+
* It is generally better to create a new file per style scope.
|
12
|
+
*
|
13
|
+
*= require font-awesome
|
14
|
+
*= require general/handycss.css
|
15
|
+
*= require general/frozen-tables.css
|
16
|
+
*= require bootstrap4/dashboard.css
|
17
|
+
|
18
|
+
*/
|
@@ -51,23 +51,11 @@ module Kuppayam
|
|
51
51
|
end
|
52
52
|
|
53
53
|
def stylesheet_filename
|
54
|
-
|
55
|
-
@stylesheet_filename = "kuppayam-xenon"
|
56
|
-
elsif @current_layout == "materialize"
|
57
|
-
@stylesheet_filename = "kuppayam-materialize"
|
58
|
-
else
|
59
|
-
@stylesheet_filename = "kuppayam-xenon"
|
60
|
-
end
|
54
|
+
@stylesheet_filename = "kuppayam-#{@current_layout}"
|
61
55
|
end
|
62
56
|
|
63
57
|
def javascript_filename
|
64
|
-
|
65
|
-
@javascript_filename = "kuppayam-xenon"
|
66
|
-
elsif @current_layout == "materialize"
|
67
|
-
@javascript_filename = "kuppayam-materialize"
|
68
|
-
else
|
69
|
-
@javascript_filename = "kuppayam-xenon"
|
70
|
-
end
|
58
|
+
@javascript_filename = "kuppayam-#{@current_layout}"
|
71
59
|
end
|
72
60
|
|
73
61
|
def set_default_title
|
@@ -75,19 +63,16 @@ module Kuppayam
|
|
75
63
|
end
|
76
64
|
|
77
65
|
def set_layout
|
78
|
-
#
|
79
|
-
@current_layout = "
|
66
|
+
# Possible Options - xenon, materialize, bootstrap4
|
67
|
+
@current_layout = "xenon"
|
80
68
|
end
|
81
69
|
|
82
70
|
def determine_layout
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
else
|
89
|
-
false
|
90
|
-
end
|
71
|
+
"kuppayam/#{@current_layout}/admin"
|
72
|
+
end
|
73
|
+
|
74
|
+
def generate_sidebar_links
|
75
|
+
{}
|
91
76
|
end
|
92
77
|
|
93
78
|
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<div class="row">
|
2
|
+
<% items.each do |key, values| %>
|
3
|
+
<% next unless values[:has_permission] %>
|
4
|
+
<div class="col-lg-2 col-md-2 col-sm-3 col-xs-4">
|
5
|
+
|
6
|
+
<div class="dashboard-box" style="border: 1px solid #898989; background-color: #f1f1f1; padding: 20px; margin: 10px; ">
|
7
|
+
<%= link_to values[:url] do %>
|
8
|
+
<div style="font-size:60px; text-align: center; color: #4b4b4b;">
|
9
|
+
<i class="fa <%= values[:icon_class] %>"></i>
|
10
|
+
</div>
|
11
|
+
|
12
|
+
<div style="font-size:12px; color:#4b4b4b; text-align: center; text-transform: uppercase; min-height: 50px;">
|
13
|
+
<%= values[:text] %>
|
14
|
+
</div>
|
15
|
+
<% end %>
|
16
|
+
</div>
|
17
|
+
|
18
|
+
</div>
|
19
|
+
<% end %>
|
20
|
+
</div>
|
File without changes
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<div class="row">
|
2
|
+
<% items.each do |key, values| %>
|
3
|
+
<% next unless values[:has_permission] %>
|
4
|
+
<div class="col-lg-2 col-md-2 col-sm-3 col-xs-4">
|
5
|
+
|
6
|
+
<div class="xe-widget xe-vertical-counter xe-vertical-counter-white" data-count=".num" data-from="0" data-to="128" data-duration="4" style="min-height:230px;">
|
7
|
+
<%= link_to values[:url] do %>
|
8
|
+
<div class="xe-icon" style="padding:0px;">
|
9
|
+
<i class="<%= values[:icon_class] %>"></i>
|
10
|
+
</div>
|
11
|
+
|
12
|
+
<div class="xe-label">
|
13
|
+
<span style="font-size:14px;color:#898989;"><%= values[:text] %></span>
|
14
|
+
</div>
|
15
|
+
<% end %>
|
16
|
+
</div>
|
17
|
+
|
18
|
+
</div>
|
19
|
+
<% end %>
|
20
|
+
</div>
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,35 @@
|
|
1
|
+
<meta charset="utf-8">
|
2
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
3
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
4
|
+
<link rel="Shortcut Icon" href="<%= asset_path("favicon.png") %>">
|
5
|
+
|
6
|
+
<title><%= title -%></title>
|
7
|
+
<meta name="description" content="SBIDU - A Customisable / API Driven Content Management System for Modern Websites" />
|
8
|
+
<meta name="author" content="Right IT Solutions" />
|
9
|
+
|
10
|
+
<!-- Favicon and Others -->
|
11
|
+
<link rel="apple-touch-icon" sizes="57x57" href="<%= asset_path('apple-icon-57x57.png') %>">
|
12
|
+
<link rel="apple-touch-icon" sizes="60x60" href="<%= asset_path('apple-icon-60x60.png') %>">
|
13
|
+
<link rel="apple-touch-icon" sizes="72x72" href="<%= asset_path('apple-icon-72x72.png') %>">
|
14
|
+
<link rel="apple-touch-icon" sizes="76x76" href="<%= asset_path('apple-icon-76x76.png') %>">
|
15
|
+
<link rel="apple-touch-icon" sizes="114x114" href="<%= asset_path('apple-icon-114x114.png') %>">
|
16
|
+
<link rel="apple-touch-icon" sizes="120x120" href="<%= asset_path('apple-icon-120x120.png') %>">
|
17
|
+
<link rel="apple-touch-icon" sizes="144x144" href="<%= asset_path('apple-icon-144x144.png') %>">
|
18
|
+
<link rel="apple-touch-icon" sizes="152x152" href="<%= asset_path('apple-icon-152x152.png') %>">
|
19
|
+
<link rel="apple-touch-icon" sizes="180x180" href="<%= asset_path('apple-icon-180x180.png') %>">
|
20
|
+
<link rel="icon" type="image/png" sizes="192x192" href="<%= asset_path('android-icon-192x192.png') %>">
|
21
|
+
<link rel="icon" type="image/png" sizes="32x32" href="<%= asset_path('favicon-32x32.png') %>">
|
22
|
+
<link rel="icon" type="image/png" sizes="96x96" href="<%= asset_path('favicon-96x96.png') %>">
|
23
|
+
<link rel="icon" type="image/png" sizes="16x16" href="<%= asset_path('favicon-16x16.png') %>">
|
24
|
+
<meta name="msapplication-TileColor" content="#ffffff">
|
25
|
+
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
|
26
|
+
<meta name="theme-color" content="#ffffff">
|
27
|
+
|
28
|
+
<%= csrf_meta_tags %>
|
29
|
+
|
30
|
+
<!-- Stylesheets -->
|
31
|
+
<!-- Bootstrap CDN -->
|
32
|
+
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">
|
33
|
+
|
34
|
+
<!-- Application Stylesheet -->
|
35
|
+
<%= stylesheet_link_tag @stylesheet_filename, :media => "all" %>
|
@@ -0,0 +1,45 @@
|
|
1
|
+
<header id="hoe-header" hoe-lpanel-effect="shrink" class="navbar">
|
2
|
+
|
3
|
+
<div class="hoe-left-header">
|
4
|
+
<a href="/">
|
5
|
+
<%= image_tag("logo-small.png", class: "img-responsive res-logo-sidebar logo-small-sidebar") %>
|
6
|
+
<span>
|
7
|
+
<%= image_tag("logo.png", class: "img-responsive logo-large-sidebar") %>
|
8
|
+
</span>
|
9
|
+
</a>
|
10
|
+
<span class="hoe-sidebar-toggle"><a href="#"></a></span>
|
11
|
+
</div>
|
12
|
+
|
13
|
+
<div class="hoe-right-header" hoe-position-type="relative" >
|
14
|
+
<span class="hoe-sidebar-toggle"><a href="#"></a></span>
|
15
|
+
|
16
|
+
<div class="container-fluid">
|
17
|
+
<div class="navbar-header pull-left p-t-10 p-b-10">
|
18
|
+
<button type="button" class="navbar-toggle pull-left m-15" data-activates=".sidebar"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button>
|
19
|
+
</div>
|
20
|
+
<ul class="nav navbar-nav navbar-right navbar-right-no-collapse">
|
21
|
+
<li class="pull-right">
|
22
|
+
<a href="index.html" class="pointer btn btn-link no-padding">
|
23
|
+
<i class=" pink-text fa fa-sign-out f20" style="float:left;margin-right:10px;"></i>
|
24
|
+
<span class="logout-text" style="float:left;">Log Out</span>
|
25
|
+
<span style="clear:both;"></span>
|
26
|
+
</a>
|
27
|
+
</li>
|
28
|
+
<li class="pull-right">
|
29
|
+
<div class="user-logged-in m-r-30">
|
30
|
+
|
31
|
+
<div class="profile-image-round" style="float:left;">
|
32
|
+
<%= image_tag "kuppayam/defaults/user-large.png", class: "img-responsive", width: "28" %>
|
33
|
+
</div>
|
34
|
+
<div class="user-name" style="float:left;margin-left:10px;"><b>Larry Leow</b></div>
|
35
|
+
<span style="clear:both;"></span>
|
36
|
+
|
37
|
+
</div>
|
38
|
+
</div>
|
39
|
+
</li>
|
40
|
+
|
41
|
+
</ul>
|
42
|
+
</div>
|
43
|
+
|
44
|
+
</div>
|
45
|
+
</header>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<div class="page-header">
|
2
|
+
<div class="title-env">
|
3
|
+
<h1 class="title pull-left m-r-10">
|
4
|
+
<i class="md md-account-circle"></i>
|
5
|
+
</h1>
|
6
|
+
<div class="pull-left">
|
7
|
+
<h1 class="title">Users (Konica Minolta)</h1>
|
8
|
+
<p class="description">Manage all Users at Konica Minolta</p>
|
9
|
+
</div>
|
10
|
+
</div>
|
11
|
+
</div>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<nav class="navbar navbar-dark fixed-top bg-dark flex-md-nowrap p-0 shadow">
|
2
|
+
<a class="navbar-brand col-sm-3 col-md-2 mr-0" href="#">SBIDU</a>
|
3
|
+
|
4
|
+
<ul class="navbar-nav px-3">
|
5
|
+
<li class="nav-item text-nowrap">
|
6
|
+
<a class="nav-link" href="#">Sign out</a>
|
7
|
+
</li>
|
8
|
+
</ul>
|
9
|
+
</nav>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<%
|
2
|
+
show_back_button = false unless defined?(show_back_button)
|
3
|
+
show_popup_close_button = false unless defined?(show_popup_close_button)
|
4
|
+
%>
|
5
|
+
<div class="page-error no-bg-color mb-40">
|
6
|
+
<div class="center">
|
7
|
+
<div class="card bordered z-depth-2" style="margin:0% auto;max-width: 500px;margin-top: 50px;">
|
8
|
+
<div class="card-content">
|
9
|
+
<div class="m-b-30 text-center"> <i class="md md-warning error-icon"></i>
|
10
|
+
<h1 class="uppercase">Access Denied!</h1>
|
11
|
+
<p class="card-title-desc">We're sorry. the page you are looking doesn't exist or you do not have the Permission.</p>
|
12
|
+
</div>
|
13
|
+
</div>
|
14
|
+
<div class="card-action clearfix">
|
15
|
+
<% if show_back_button %>
|
16
|
+
<div class="text-center"> <a href="#" onclick="window.history.back()" class="btn btn-primary btn-block">Go Back</a> </div>
|
17
|
+
<% end %>
|
18
|
+
|
19
|
+
<% if show_popup_close_button %>
|
20
|
+
<%= link_to "Close", "#", onclick: "closeGenericModal();", class: "btn btn-primary btn-block" %>
|
21
|
+
<% end %>
|
22
|
+
|
23
|
+
</div>
|
24
|
+
</div>
|
25
|
+
</div>
|
26
|
+
</div>
|
@@ -0,0 +1,64 @@
|
|
1
|
+
<nav class="col-md-2 d-none d-md-block bg-light sidebar">
|
2
|
+
<div class="sidebar-sticky">
|
3
|
+
|
4
|
+
<ul class="nav flex-column">
|
5
|
+
<li class="nav-item">
|
6
|
+
<a class="nav-link active" href="#">
|
7
|
+
Dashboard <span class="sr-only">(current)</span>
|
8
|
+
</a>
|
9
|
+
</li>
|
10
|
+
</ul>
|
11
|
+
|
12
|
+
<h6 class="sidebar-heading d-flex justify-content-between align-items-center px-3 mt-40 mb-1 text-muted">
|
13
|
+
<span>Website Elements</span>
|
14
|
+
<a class="d-flex align-items-center text-muted" href="#">
|
15
|
+
</a>
|
16
|
+
</h6>
|
17
|
+
|
18
|
+
<ul class="nav flex-column">
|
19
|
+
<li class="nav-item">
|
20
|
+
<a class="nav-link" href="#">
|
21
|
+
Products
|
22
|
+
</a>
|
23
|
+
</li>
|
24
|
+
<li class="nav-item">
|
25
|
+
<a class="nav-link" href="#">
|
26
|
+
Services
|
27
|
+
</a>
|
28
|
+
</li>
|
29
|
+
<li class="nav-item">
|
30
|
+
<a class="nav-link" href="#">
|
31
|
+
Users
|
32
|
+
</a>
|
33
|
+
</li>
|
34
|
+
</ul>
|
35
|
+
|
36
|
+
<h6 class="sidebar-heading d-flex justify-content-between align-items-center px-3 mt-40 mb-1 text-muted">
|
37
|
+
<span>Admin</span>
|
38
|
+
<a class="d-flex align-items-center text-muted" href="#">
|
39
|
+
</a>
|
40
|
+
</h6>
|
41
|
+
<ul class="nav flex-column mb-2">
|
42
|
+
<li class="nav-item">
|
43
|
+
<a class="nav-link" href="#">
|
44
|
+
Users
|
45
|
+
</a>
|
46
|
+
</li>
|
47
|
+
<li class="nav-item">
|
48
|
+
<a class="nav-link" href="#">
|
49
|
+
Roles
|
50
|
+
</a>
|
51
|
+
</li>
|
52
|
+
<li class="nav-item">
|
53
|
+
<a class="nav-link" href="#">
|
54
|
+
Features
|
55
|
+
</a>
|
56
|
+
</li>
|
57
|
+
<li class="nav-item">
|
58
|
+
<a class="nav-link" href="#">
|
59
|
+
Permissions
|
60
|
+
</a>
|
61
|
+
</li>
|
62
|
+
</ul>
|
63
|
+
</div>
|
64
|
+
</nav>
|
@@ -0,0 +1,113 @@
|
|
1
|
+
<!doctype html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<!-- Head -->
|
5
|
+
<%= render :partial=>"/layouts/kuppayam/bootstrap4/head" -%>
|
6
|
+
</head>
|
7
|
+
|
8
|
+
<body>
|
9
|
+
|
10
|
+
<!-- Top Navigation -->
|
11
|
+
<%= render :partial=>"/layouts/kuppayam/bootstrap4/navbar" -%>
|
12
|
+
|
13
|
+
<div class="container-fluid">
|
14
|
+
<div class="row mt-40">
|
15
|
+
|
16
|
+
<!-- Sidebar Navigation -->
|
17
|
+
<%#= render :partial=>"/layouts/kuppayam/bootstrap4/sidebar" -%>
|
18
|
+
|
19
|
+
<main id="div_page_content_main" role="main" class="col-md-12 ml-sm-auto col-lg-12 px-4">
|
20
|
+
<%#* Page Content Starts here -%>
|
21
|
+
|
22
|
+
<%#* Show flash messages if controller has set any. -%>
|
23
|
+
<div id="div_flash_message">
|
24
|
+
<%= flash_message(false) if defined?(flash) -%>
|
25
|
+
</div>
|
26
|
+
|
27
|
+
<%= yield %>
|
28
|
+
|
29
|
+
|
30
|
+
</main>
|
31
|
+
|
32
|
+
</div>
|
33
|
+
|
34
|
+
<!-- Footer -->
|
35
|
+
<%= render :partial=>"/layouts/kuppayam/bootstrap4/footer" -%>
|
36
|
+
|
37
|
+
</div>
|
38
|
+
|
39
|
+
<div id="div_modal_generic" class="modal" style="z-index: 1056;">
|
40
|
+
<div class="modal-dialog">
|
41
|
+
<div class="modal-content">
|
42
|
+
<div class="modal-header">
|
43
|
+
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
44
|
+
<h3 class="modal-title">Modal title</h3>
|
45
|
+
</div>
|
46
|
+
<div class="modal-body-main"></div>
|
47
|
+
</div><!-- /.modal-content -->
|
48
|
+
</div><!-- /.modal-dialog -->
|
49
|
+
</div><!-- /.modal -->
|
50
|
+
|
51
|
+
<div id="div_modal_large" class="modal">
|
52
|
+
<div class="modal-dialog modal-lg" style="width: 96%">
|
53
|
+
<div class="modal-content">
|
54
|
+
<div class="modal-header">
|
55
|
+
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
56
|
+
<h3 class="modal-title">Modal title</h3>
|
57
|
+
</div>
|
58
|
+
<div class="modal-body-main"></div>
|
59
|
+
</div><!-- /.modal-content -->
|
60
|
+
</div><!-- /.modal-dialog -->
|
61
|
+
</div><!-- /.modal -->
|
62
|
+
|
63
|
+
<div id="div_modal_message" class="modal fade">
|
64
|
+
<div class="modal-dialog">
|
65
|
+
<div class="modal-content">
|
66
|
+
<div class="modal-header">
|
67
|
+
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
68
|
+
<h3 class="modal-title">Modal title</h3>
|
69
|
+
</div>
|
70
|
+
<div class="modal-body">
|
71
|
+
<p>One fine body…</p>
|
72
|
+
</div>
|
73
|
+
<div class="modal-footer">
|
74
|
+
<button type="button" class="btn btn-primary" data-dismiss="modal">Close</button>
|
75
|
+
</div>
|
76
|
+
</div><!-- /.modal-content -->
|
77
|
+
</div><!-- /.modal-dialog -->
|
78
|
+
</div><!-- /.modal -->
|
79
|
+
|
80
|
+
<div id="div_modal_image_upload" class="modal" style="z-index: 1057;">
|
81
|
+
<div class="modal-dialog">
|
82
|
+
<div class="modal-content">
|
83
|
+
<div class="modal-header">
|
84
|
+
<button type="button" class="close" aria-hidden="true" onclick="closeImageUploadModal();" >×</button>
|
85
|
+
<h3 class="modal-title">Modal title</h3>
|
86
|
+
</div>
|
87
|
+
<div class="modal-body-main"></div>
|
88
|
+
</div><!-- /.modal-content -->
|
89
|
+
</div><!-- /.modal-dialog -->
|
90
|
+
</div><!-- /.modal -->
|
91
|
+
|
92
|
+
<!-- Javascripts -->
|
93
|
+
<!-- Bootstrap CDN - jQuery & other Javascript -->
|
94
|
+
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
95
|
+
|
96
|
+
<!-- The following jquery version is what bootstrap4 recommends. however it was not worknig with jquery_ujs hence we are using our own jquery 3 version. -->
|
97
|
+
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script> -->
|
98
|
+
|
99
|
+
<%= javascript_include_tag @javascript_filename -%>
|
100
|
+
|
101
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js" integrity="sha384-cs/chFZiN24E4KMATLdqdvsezGxaGsi4hLGOzlXwp5UZB1LY//20VyM2taTB4QvJ" crossorigin="anonymous"></script>
|
102
|
+
|
103
|
+
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js" integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm" crossorigin="anonymous"></script>
|
104
|
+
|
105
|
+
<!-- Yielding Javascript Footer -->
|
106
|
+
<%= yield :javascript_footer -%>
|
107
|
+
|
108
|
+
<iframe id="iframe_document" name="iframe_document" width="100%" style="display:none"></iframe>
|
109
|
+
|
110
|
+
<iframe id="iframe_image" name="iframe_image" width="100%" style="display:none"></iframe>
|
111
|
+
|
112
|
+
</body>
|
113
|
+
</html>
|
File without changes
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en" class="no-js">
|
3
|
+
<head>
|
4
|
+
<!-- Head -->
|
5
|
+
<%= render :partial=>"/layouts/kuppayam/bootstrap4/head" -%>
|
6
|
+
<%= javascript_include_tag "jquery_and_family" -%>
|
7
|
+
</head>
|
8
|
+
|
9
|
+
<body>
|
10
|
+
|
11
|
+
<%= yield %>
|
12
|
+
|
13
|
+
<%#* Loading Javascripts -%>
|
14
|
+
<%= yield :javascript_footer -%>
|
15
|
+
|
16
|
+
</body>
|
17
|
+
</html>
|
File without changes
|
@@ -0,0 +1,84 @@
|
|
1
|
+
<div class="container-fluid">
|
2
|
+
<div class="row">
|
3
|
+
|
4
|
+
<nav class="col-md-2 d-none d-md-block bg-light sidebar">
|
5
|
+
<div class="sidebar-sticky">
|
6
|
+
<ul class="nav flex-column">
|
7
|
+
<li class="nav-item">
|
8
|
+
<a class="nav-link active" href="#">
|
9
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-home"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><polyline points="9 22 9 12 15 12 15 22"></polyline></svg>
|
10
|
+
Dashboard <span class="sr-only">(current)</span>
|
11
|
+
</a>
|
12
|
+
</li>
|
13
|
+
<li class="nav-item">
|
14
|
+
<a class="nav-link" href="#">
|
15
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file"><path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"></path><polyline points="13 2 13 9 20 9"></polyline></svg>
|
16
|
+
Orders
|
17
|
+
</a>
|
18
|
+
</li>
|
19
|
+
<li class="nav-item">
|
20
|
+
<a class="nav-link" href="#">
|
21
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-shopping-cart"><circle cx="9" cy="21" r="1"></circle><circle cx="20" cy="21" r="1"></circle><path d="M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"></path></svg>
|
22
|
+
Products
|
23
|
+
</a>
|
24
|
+
</li>
|
25
|
+
<li class="nav-item">
|
26
|
+
<a class="nav-link" href="#">
|
27
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-users"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="9" cy="7" r="4"></circle><path d="M23 21v-2a4 4 0 0 0-3-3.87"></path><path d="M16 3.13a4 4 0 0 1 0 7.75"></path></svg>
|
28
|
+
Customers
|
29
|
+
</a>
|
30
|
+
</li>
|
31
|
+
<li class="nav-item">
|
32
|
+
<a class="nav-link" href="#">
|
33
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-bar-chart-2"><line x1="18" y1="20" x2="18" y2="10"></line><line x1="12" y1="20" x2="12" y2="4"></line><line x1="6" y1="20" x2="6" y2="14"></line></svg>
|
34
|
+
Reports
|
35
|
+
</a>
|
36
|
+
</li>
|
37
|
+
<li class="nav-item">
|
38
|
+
<a class="nav-link" href="#">
|
39
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-layers"><polygon points="12 2 2 7 12 12 22 7 12 2"></polygon><polyline points="2 17 12 22 22 17"></polyline><polyline points="2 12 12 17 22 12"></polyline></svg>
|
40
|
+
Integrations
|
41
|
+
</a>
|
42
|
+
</li>
|
43
|
+
</ul>
|
44
|
+
|
45
|
+
<h6 class="sidebar-heading d-flex justify-content-between align-items-center px-3 mt-4 mb-1 text-muted">
|
46
|
+
<span>Saved reports</span>
|
47
|
+
<a class="d-flex align-items-center text-muted" href="#">
|
48
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-plus-circle"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="16"></line><line x1="8" y1="12" x2="16" y2="12"></line></svg>
|
49
|
+
</a>
|
50
|
+
</h6>
|
51
|
+
<ul class="nav flex-column mb-2">
|
52
|
+
<li class="nav-item">
|
53
|
+
<a class="nav-link" href="#">
|
54
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file-text"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="16" y1="13" x2="8" y2="13"></line><line x1="16" y1="17" x2="8" y2="17"></line><polyline points="10 9 9 9 8 9"></polyline></svg>
|
55
|
+
Current month
|
56
|
+
</a>
|
57
|
+
</li>
|
58
|
+
<li class="nav-item">
|
59
|
+
<a class="nav-link" href="#">
|
60
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file-text"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="16" y1="13" x2="8" y2="13"></line><line x1="16" y1="17" x2="8" y2="17"></line><polyline points="10 9 9 9 8 9"></polyline></svg>
|
61
|
+
Last quarter
|
62
|
+
</a>
|
63
|
+
</li>
|
64
|
+
<li class="nav-item">
|
65
|
+
<a class="nav-link" href="#">
|
66
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file-text"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="16" y1="13" x2="8" y2="13"></line><line x1="16" y1="17" x2="8" y2="17"></line><polyline points="10 9 9 9 8 9"></polyline></svg>
|
67
|
+
Social engagement
|
68
|
+
</a>
|
69
|
+
</li>
|
70
|
+
<li class="nav-item">
|
71
|
+
<a class="nav-link" href="#">
|
72
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file-text"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="16" y1="13" x2="8" y2="13"></line><line x1="16" y1="17" x2="8" y2="17"></line><polyline points="10 9 9 9 8 9"></polyline></svg>
|
73
|
+
Year-end sale
|
74
|
+
</a>
|
75
|
+
</li>
|
76
|
+
</ul>
|
77
|
+
</div>
|
78
|
+
</nav>
|
79
|
+
|
80
|
+
<main role="main" class="col-md-9 ml-sm-auto col-lg-10 px-4">
|
81
|
+
|
82
|
+
</main>
|
83
|
+
</div>
|
84
|
+
</div>
|
@@ -1,36 +1,29 @@
|
|
1
1
|
<meta charset="utf-8">
|
2
2
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
3
|
-
|
4
3
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
5
|
-
<
|
4
|
+
<link rel="Shortcut Icon" href="<%= asset_path("favicon.png") %>">
|
5
|
+
|
6
|
+
<title><%= title -%></title>
|
7
|
+
<meta name="description" content="SBIDU - A Customisable / API Driven Content Management System for Modern Websites" />
|
6
8
|
<meta name="author" content="Right IT Solutions" />
|
7
9
|
|
8
10
|
<meta name="msapplication-TileColor" content="#9f00a7">
|
9
11
|
<meta name="msapplication-TileImage" content="assets/img/favicon/mstile-144x144.png">
|
10
|
-
<meta name="theme-color" content="#ffffff">
|
11
|
-
|
12
|
-
<link rel="Shortcut Icon" href="<%= asset_path("favicon.png") %>">
|
13
|
-
|
14
|
-
<title><%= title -%></title>
|
15
12
|
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
<link rel="apple-touch-icon" sizes="
|
21
|
-
<link rel="apple-touch-icon" sizes="
|
22
|
-
<link rel="apple-touch-icon" sizes="
|
23
|
-
<link rel="apple-touch-icon" sizes="
|
24
|
-
<link rel="apple-touch-icon" sizes="
|
25
|
-
<link rel="apple-touch-icon" sizes="
|
26
|
-
<link rel="
|
27
|
-
<link rel="
|
28
|
-
<link rel="
|
29
|
-
<link rel="icon" type="image/png" sizes="
|
30
|
-
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon-32x32.png">
|
31
|
-
<link rel="icon" type="image/png" sizes="96x96" href="/assets/favicon-96x96.png">
|
32
|
-
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon-16x16.png">
|
33
|
-
<link rel="manifest" href="/assets/manifest.json">
|
13
|
+
<!-- Favicon and Others -->
|
14
|
+
<link rel="apple-touch-icon" sizes="57x57" href="<%= asset_path('apple-icon-57x57.png') %>">
|
15
|
+
<link rel="apple-touch-icon" sizes="60x60" href="<%= asset_path('apple-icon-60x60.png') %>">
|
16
|
+
<link rel="apple-touch-icon" sizes="72x72" href="<%= asset_path('apple-icon-72x72.png') %>">
|
17
|
+
<link rel="apple-touch-icon" sizes="76x76" href="<%= asset_path('apple-icon-76x76.png') %>">
|
18
|
+
<link rel="apple-touch-icon" sizes="114x114" href="<%= asset_path('apple-icon-114x114.png') %>">
|
19
|
+
<link rel="apple-touch-icon" sizes="120x120" href="<%= asset_path('apple-icon-120x120.png') %>">
|
20
|
+
<link rel="apple-touch-icon" sizes="144x144" href="<%= asset_path('apple-icon-144x144.png') %>">
|
21
|
+
<link rel="apple-touch-icon" sizes="152x152" href="<%= asset_path('apple-icon-152x152.png') %>">
|
22
|
+
<link rel="apple-touch-icon" sizes="180x180" href="<%= asset_path('apple-icon-180x180.png') %>">
|
23
|
+
<link rel="icon" type="image/png" sizes="192x192" href="<%= asset_path('android-icon-192x192.png') %>">
|
24
|
+
<link rel="icon" type="image/png" sizes="32x32" href="<%= asset_path('favicon-32x32.png') %>">
|
25
|
+
<link rel="icon" type="image/png" sizes="96x96" href="<%= asset_path('favicon-96x96.png') %>">
|
26
|
+
<link rel="icon" type="image/png" sizes="16x16" href="<%= asset_path('favicon-16x16.png') %>">
|
34
27
|
<meta name="msapplication-TileColor" content="#ffffff">
|
35
28
|
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
|
36
29
|
<meta name="theme-color" content="#ffffff">
|
@@ -1,30 +1,26 @@
|
|
1
1
|
<meta charset="utf-8">
|
2
2
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
3
|
-
|
4
3
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
5
|
-
<meta name="description" content="Admin Module" />
|
6
|
-
<meta name="author" content="Right IT Solutions" />
|
7
|
-
|
8
4
|
<link rel="Shortcut Icon" href="<%= asset_path("favicon.png") %>">
|
9
|
-
<title><%= title -%></title>
|
10
|
-
<%#= meta_tags %>
|
11
5
|
|
12
|
-
|
6
|
+
<title><%= title -%></title>
|
7
|
+
<meta name="description" content="SBIDU - A Customisable / API Driven Content Management System for Modern Websites" />
|
8
|
+
<meta name="author" content="Right IT Solutions" />
|
13
9
|
|
14
|
-
|
15
|
-
<link rel="apple-touch-icon" sizes="
|
16
|
-
<link rel="apple-touch-icon" sizes="
|
17
|
-
<link rel="apple-touch-icon" sizes="
|
18
|
-
<link rel="apple-touch-icon" sizes="
|
19
|
-
<link rel="apple-touch-icon" sizes="
|
20
|
-
<link rel="apple-touch-icon" sizes="
|
21
|
-
<link rel="apple-touch-icon" sizes="
|
22
|
-
<link rel="apple-touch-icon" sizes="
|
23
|
-
<link rel="icon"
|
24
|
-
<link rel="icon" type="image/png" sizes="
|
25
|
-
<link rel="icon" type="image/png" sizes="
|
26
|
-
<link rel="icon" type="image/png" sizes="
|
27
|
-
<link rel="
|
10
|
+
<!-- Favicon and Others -->
|
11
|
+
<link rel="apple-touch-icon" sizes="57x57" href="<%= asset_path('apple-icon-57x57.png') %>">
|
12
|
+
<link rel="apple-touch-icon" sizes="60x60" href="<%= asset_path('apple-icon-60x60.png') %>">
|
13
|
+
<link rel="apple-touch-icon" sizes="72x72" href="<%= asset_path('apple-icon-72x72.png') %>">
|
14
|
+
<link rel="apple-touch-icon" sizes="76x76" href="<%= asset_path('apple-icon-76x76.png') %>">
|
15
|
+
<link rel="apple-touch-icon" sizes="114x114" href="<%= asset_path('apple-icon-114x114.png') %>">
|
16
|
+
<link rel="apple-touch-icon" sizes="120x120" href="<%= asset_path('apple-icon-120x120.png') %>">
|
17
|
+
<link rel="apple-touch-icon" sizes="144x144" href="<%= asset_path('apple-icon-144x144.png') %>">
|
18
|
+
<link rel="apple-touch-icon" sizes="152x152" href="<%= asset_path('apple-icon-152x152.png') %>">
|
19
|
+
<link rel="apple-touch-icon" sizes="180x180" href="<%= asset_path('apple-icon-180x180.png') %>">
|
20
|
+
<link rel="icon" type="image/png" sizes="192x192" href="<%= asset_path('android-icon-192x192.png') %>">
|
21
|
+
<link rel="icon" type="image/png" sizes="32x32" href="<%= asset_path('favicon-32x32.png') %>">
|
22
|
+
<link rel="icon" type="image/png" sizes="96x96" href="<%= asset_path('favicon-96x96.png') %>">
|
23
|
+
<link rel="icon" type="image/png" sizes="16x16" href="<%= asset_path('favicon-16x16.png') %>">
|
28
24
|
<meta name="msapplication-TileColor" content="#ffffff">
|
29
25
|
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
|
30
26
|
<meta name="theme-color" content="#ffffff">
|
@@ -37,7 +33,6 @@
|
|
37
33
|
<%= stylesheet_link_tag @stylesheet_filename, :media => "all" %>
|
38
34
|
|
39
35
|
<!-- Javascripts -->
|
40
|
-
|
41
36
|
<%= javascript_include_tag "jquery_and_family" -%>
|
42
37
|
|
43
38
|
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
@@ -324,8 +324,7 @@ module Kuppayam
|
|
324
324
|
# end
|
325
325
|
|
326
326
|
# File.open(csv_path) do |file|
|
327
|
-
|
328
|
-
# headers = file.first
|
327
|
+
# headers = file.first
|
329
328
|
# file.lazy.each_slice(batch_size) do |lines|
|
330
329
|
# csv_rows = CSV.parse(lines.join, write_headers: true, headers: headers)
|
331
330
|
# csv_rows.each do |row|
|
@@ -340,8 +339,6 @@ module Kuppayam
|
|
340
339
|
# rows = CSV.new(File.open(csv_path,'r'), headers: true, header_converters: :symbol).lazy.select do |row|
|
341
340
|
# end
|
342
341
|
|
343
|
-
# binding.pry
|
344
|
-
|
345
342
|
# rows.each do |row|
|
346
343
|
|
347
344
|
# error_object = save_row_data(row)
|
data/lib/kuppayam/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kuppayam
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.8.pre.materialize
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- kpvarma
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-05-
|
11
|
+
date: 2018-05-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -513,6 +513,7 @@ files:
|
|
513
513
|
- app/assets/images/ms-icon-310x310.png
|
514
514
|
- app/assets/images/ms-icon-70x70.png
|
515
515
|
- app/assets/javascripts/jquery_and_family.js
|
516
|
+
- app/assets/javascripts/kuppayam-bootstrap4.js
|
516
517
|
- app/assets/javascripts/kuppayam-materialize.js
|
517
518
|
- app/assets/javascripts/kuppayam-xenon.js
|
518
519
|
- app/assets/javascripts/kuppayam/utilities.js
|
@@ -523,10 +524,15 @@ files:
|
|
523
524
|
- app/assets/javascripts/materialize/vendors.min.js
|
524
525
|
- app/assets/sketches/defaults.sketch
|
525
526
|
- app/assets/sketches/logo.sketch
|
527
|
+
- app/assets/stylesheets/bootstrap4/categories.css
|
528
|
+
- app/assets/stylesheets/bootstrap4/dashboard.css
|
529
|
+
- app/assets/stylesheets/bootstrap4/general.css
|
530
|
+
- app/assets/stylesheets/bootstrap4/pages.css
|
526
531
|
- app/assets/stylesheets/general/frozen-tables.css
|
527
532
|
- app/assets/stylesheets/general/handycss.css
|
528
533
|
- app/assets/stylesheets/general/handyoverlay.css
|
529
534
|
- app/assets/stylesheets/jquery_and_family.css
|
535
|
+
- app/assets/stylesheets/kuppayam-bootstrap4.css
|
530
536
|
- app/assets/stylesheets/kuppayam-materialize.css
|
531
537
|
- app/assets/stylesheets/kuppayam-xenon.css
|
532
538
|
- app/assets/stylesheets/materialize/custom.css
|
@@ -666,7 +672,23 @@ files:
|
|
666
672
|
- app/views/kuppayam/workflows/peacock/row.js.erb
|
667
673
|
- app/views/kuppayam/workflows/peacock/show.js.erb
|
668
674
|
- app/views/kuppayam/workflows/peacock/update.js.erb
|
669
|
-
- app/views/layouts/dashboard/_items.html.erb
|
675
|
+
- app/views/layouts/dashboard/bootstrap4/_items.html.erb
|
676
|
+
- app/views/layouts/dashboard/materialize/_items.html.erb
|
677
|
+
- app/views/layouts/dashboard/xenon/_items.html.erb
|
678
|
+
- app/views/layouts/kuppayam/bootstrap4/401.html.erb
|
679
|
+
- app/views/layouts/kuppayam/bootstrap4/_blank_with_nav.html.erb
|
680
|
+
- app/views/layouts/kuppayam/bootstrap4/_footer.html.erb
|
681
|
+
- app/views/layouts/kuppayam/bootstrap4/_head.html.erb
|
682
|
+
- app/views/layouts/kuppayam/bootstrap4/_header.html.erb
|
683
|
+
- app/views/layouts/kuppayam/bootstrap4/_heading.html.erb
|
684
|
+
- app/views/layouts/kuppayam/bootstrap4/_navbar.html.erb
|
685
|
+
- app/views/layouts/kuppayam/bootstrap4/_permission_denied.html.erb
|
686
|
+
- app/views/layouts/kuppayam/bootstrap4/_sidebar.html.erb
|
687
|
+
- app/views/layouts/kuppayam/bootstrap4/admin.html.erb
|
688
|
+
- app/views/layouts/kuppayam/bootstrap4/blank.html.erb
|
689
|
+
- app/views/layouts/kuppayam/bootstrap4/image_upload.html.erb
|
690
|
+
- app/views/layouts/kuppayam/bootstrap4/login.html.erb
|
691
|
+
- app/views/layouts/kuppayam/bootstrap4/temp.html.erb
|
670
692
|
- app/views/layouts/kuppayam/materialize/401.html.erb
|
671
693
|
- app/views/layouts/kuppayam/materialize/_footer.html.erb
|
672
694
|
- app/views/layouts/kuppayam/materialize/_head.html.erb
|