mirror of
https://github.com/Mintplex-Labs/express-admin.git
synced 2026-07-21 00:45:22 -04:00
Add new record button shortcut in mainview
This commit is contained in:
@@ -20,6 +20,9 @@
|
||||
/*login header*/
|
||||
#login .label-default { color: #f8f8f2; }
|
||||
|
||||
/*mainview*/
|
||||
.ex-table tbody td .glyphicon-plus { font-size: 8px; position: relative; top: -1px; }
|
||||
|
||||
|
||||
/*editview*/
|
||||
.btn-today { line-height: 240%; }
|
||||
|
||||
+7
-2
@@ -10,7 +10,10 @@
|
||||
<tbody>
|
||||
{{#tables}}
|
||||
<tr>
|
||||
<td><a href="{{slug}}">{{name}}</a></td>
|
||||
<td>
|
||||
<a href="{{root}}/{{slug}}">{{name}}</a>
|
||||
<a href="{{root}}/{{slug}}/add" class="glyphicon glyphicon-plus" title="{{string.add}} {{name}}"></a>
|
||||
</td>
|
||||
</tr>
|
||||
{{/tables}}
|
||||
</tbody>
|
||||
@@ -26,7 +29,9 @@
|
||||
<tbody>
|
||||
{{#views}}
|
||||
<tr>
|
||||
<td><a href="{{slug}}">{{name}}</a></td>
|
||||
<td>
|
||||
<a href="{{root}}/{{slug}}">{{name}}</a>
|
||||
</td>
|
||||
</tr>
|
||||
{{/views}}
|
||||
</tbody>
|
||||
|
||||
Reference in New Issue
Block a user