chaltron 0.2.5 → 0.2.6
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b3f3da00fae5b9869d0d786de0a4790e0bdb808e
|
4
|
+
data.tar.gz: 0c0c096894d885d6ab0de6c6eeb262f561574e6c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 35821bd982730908fe2036a7ddc6b63c95066df0cc84551ba75924ef0e1ed0cf74429c55bf475fa315600c97e467c75df4baa4ae103de51f1ff6cf6bec394141
|
7
|
+
data.tar.gz: f2ba63bfa44b1db73a3da2fa628df29e94fe490d981008bdca91215ad5ece58f4c46c03ee0f4b872df437733fff06a0cd6bf5317bfc458ea74d1139169512ebe
|
@@ -6,7 +6,7 @@
|
|
6
6
|
<hr>
|
7
7
|
|
8
8
|
<% if ldap_enabled? %>
|
9
|
-
<div class='btn-group
|
9
|
+
<div class='btn-group'>
|
10
10
|
<%= content_tag :button, type: 'button', class: 'btn btn-primary dropdown-toggle',
|
11
11
|
data: {toggle: 'dropdown'}, aria: {expanded: false} do %>
|
12
12
|
<%= icon :plus, t('.new_user') %> <span class="caret"></span>
|
@@ -27,26 +27,24 @@
|
|
27
27
|
<div class='col-md-9'>
|
28
28
|
<div class='panel panel-default'>
|
29
29
|
<div class='panel-body'>
|
30
|
-
|
31
|
-
|
32
|
-
<
|
33
|
-
<
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
<% end %>
|
49
|
-
</div>
|
30
|
+
<%= content_tag 'table', id: 'users', class: 'table table-striped table-responsive' do %>
|
31
|
+
<thead>
|
32
|
+
<tr>
|
33
|
+
<th class='username'>
|
34
|
+
<%= User.human_attribute_name(:username) %>
|
35
|
+
</th>
|
36
|
+
<th class='fullname'>
|
37
|
+
<%= User.human_attribute_name(:fullname) %>
|
38
|
+
</th>
|
39
|
+
<th class='email'>
|
40
|
+
<%= User.human_attribute_name(:email) %>
|
41
|
+
</th>
|
42
|
+
</tr>
|
43
|
+
</thead>
|
44
|
+
<tbody>
|
45
|
+
<%= render @users %>
|
46
|
+
</tbody>
|
47
|
+
<% end %>
|
50
48
|
</div>
|
51
49
|
</div>
|
52
50
|
</div>
|
data/lib/chaltron/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chaltron
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- vicvega
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-01-
|
11
|
+
date: 2018-01-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|