diff options
author | Michael Meer <michael@meer.name> | 2013-09-24 09:33:52 +0200 |
---|---|---|
committer | Michael Meer <michael@meer.name> | 2013-09-24 09:33:52 +0200 |
commit | a37986cdc02b268d19aaae467ac1a8651f88a0ff (patch) | |
tree | 9dc8eba03a63e9d30fc5354dab02d8c8307ed500 | |
parent | 54823a65898db043a03aa3c509a71277ddaf52b4 (diff) | |
download | volse-hubzilla-a37986cdc02b268d19aaae467ac1a8651f88a0ff.tar.gz volse-hubzilla-a37986cdc02b268d19aaae467ac1a8651f88a0ff.tar.bz2 volse-hubzilla-a37986cdc02b268d19aaae467ac1a8651f88a0ff.zip |
added new smarty template admin_hubloc.tpl
-rwxr-xr-x | view/tpl/admin_hubloc.tpl | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/view/tpl/admin_hubloc.tpl b/view/tpl/admin_hubloc.tpl new file mode 100755 index 000000000..a9f250652 --- /dev/null +++ b/view/tpl/admin_hubloc.tpl @@ -0,0 +1,22 @@ +<div class="generic-content-wrapper" id='adminpage'> + <h1>{{$title}} - {{$page}}</h1> + + <form action="{{$baseurl}}/admin/hubloc" method="post"> + <input type='hidden' name='form_security_token' value='{{$form_security_token}}'> + + <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> + </tr>{{/foreach}} + </tbody> + </table> + + +</div> |