streams/view/tpl/admin_hubloc.tpl

28 lines
843 B
Smarty
Raw Normal View History

2014-10-10 14:54:12 +00:00
<div class="generic-content-wrapper-styled" id='adminpage'>
<h1>{{$title}} - {{$page}}</h1>
<table id='server'>
<thead>
<tr>
{{foreach $th_hubloc as $th}}<th>{{$th}}</th>{{/foreach}}
</tr>
</thead>
<tbody>
{{foreach $hubloc as $hub}}<tr>
<td>{{$hub.hubloc_id}}</td><td>{{$hub.hubloc_addr}}</td><td>{{$hub.hubloc_host}}</td><td>{{$hub.hubloc_status}}</td>
2014-01-22 10:29:49 +00:00
<td>
<form action="{{$baseurl}}/admin/hubloc" method="post">
<input type="hidden" name="hublocid" value="{{$hub.hubloc_id}}">
<input type='hidden' name='form_security_token' value='{{$form_security_token}}'>
2014-01-30 09:39:09 +00:00
<input type='hidden' name='url' value='{{$hub.hubloc_host}}'>
2014-01-20 12:03:24 +00:00
<input type="submit" name="check" value="check" >
<input type="submit" name="repair" value="repair" ></td>
2014-01-22 10:29:49 +00:00
</form>
</tr>{{/foreach}}
</tbody>
</table>
</div>