Commit d44e72af6976658c5c5be48cb1d264c5838b7559

Authored by Adhidarma Hadiwinoto
1 parent 8985abf85c
Exists in master

xs dan sm

Showing 1 changed file with 18 additions and 2 deletions Side-by-side Diff

views/config.index.html
... ... @@ -19,9 +19,25 @@
19 19 <tr>
20 20 <td id="config.{{ scope }}.{{ keyword }}">
21 21 <strong>{{ keyword }}</strong>
  22 +
  23 + <div class="hidden-md hidden-lg">
  24 +
  25 + {% if isMask(scope, keyword) %}
  26 + ********
  27 + {% else %}
  28 + {{ value }}
  29 + {% endif %}
  30 +
  31 + <br/>
  32 + <br/>
  33 +
  34 + <a class="btn btn-warning" role="button" href="/config/edit/{{ scope }}/{{ keyword }}">Edit</a>
  35 + <a class="btn btn-danger" role="button" href="/config/ask-delete/{{ scope }}/{{ keyword }}">Delete</a>
  36 +
  37 + </div>
22 38 </td>
23 39  
24   - <td>
  40 + <td class="hidden-xs hidden-sm">
25 41 {% if isMask(scope, keyword) %}
26 42 ********
27 43 {% else %}
... ... @@ -29,7 +45,7 @@
29 45 {% endif %}
30 46 </td>
31 47  
32   - <td>
  48 + <td class="hidden-xs hidden-sm">
33 49  
34 50 <a class="btn btn-warning" role="button" href="/config/edit/{{ scope }}/{{ keyword }}">Edit</a>
35 51 <a class="btn btn-danger" role="button" href="/config/ask-delete/{{ scope }}/{{ keyword }}">Delete</a>