blob: 6cd77f9e721c7b69af38da2626d8160a10cc92b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<form method="post" action="?do=SysConfig">
<input type="hidden" name="token" value="{{token}}">
<input type="hidden" name="action" value="module">
<table class="slx-table">
{{#modules}}
<tr>
<td>{{module}}</td>
<td>
<button class="btn btn-default btn-xs" name="list" value="{{moduleid}}"><span class="glyphicon glyphicon-eye-open"></span> {{lang_show}}</button>
</td>
</tr>
{{/modules}}
</table>
{{^modules}}
<div class="alert alert-warning">{{lang_noContent}}</div>
{{/modules}}
</form>
|