diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-03-26 18:43:38 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-03-26 18:43:38 +0100 |
commit | a50706317435d09cacb95cad0a6ccaf8ae5b5f6c (patch) | |
tree | b97b9ca3d74ddc1b70b390ec37f3eb132c742256 /view/tpl/locmanage.tpl | |
parent | 0a14ac1f60b70fe038cf714ac1e856c2bc66a92d (diff) | |
download | volse-hubzilla-a50706317435d09cacb95cad0a6ccaf8ae5b5f6c.tar.gz volse-hubzilla-a50706317435d09cacb95cad0a6ccaf8ae5b5f6c.tar.bz2 volse-hubzilla-a50706317435d09cacb95cad0a6ccaf8ae5b5f6c.zip |
move link to /locs to settings menu if we have more than one location and some template work on locs
Diffstat (limited to 'view/tpl/locmanage.tpl')
-rw-r--r-- | view/tpl/locmanage.tpl | 77 |
1 files changed, 40 insertions, 37 deletions
diff --git a/view/tpl/locmanage.tpl b/view/tpl/locmanage.tpl index c94cf60a7..95847d559 100644 --- a/view/tpl/locmanage.tpl +++ b/view/tpl/locmanage.tpl @@ -1,38 +1,41 @@ -<div class="generic-content-wrapper-styled"> -<h2>{{$header}}</h2> - -<script> -function primehub(id) { - $.post(baseurl + '/locs','primary='+id,function(data) { window.location.href=window.location.href; }); -} -function drophub(id) { - $.post(baseurl + '/locs','drop='+id,function(data) { window.location.href=window.location.href; }); -} -</script> - -<div class="descriptive-text">{{$sync_text}}</div> -<br /> -<div class="descriptive-text">{{$drop_text}}</div> -<div class="descriptive-text">{{$last_resort}}</div> -<br /> - - - - -<table> -<tr><td>{{$loc}}</td><td>{{$mkprm}}</td><td>{{$drop}}</td></tr> -{{foreach $hubs as $hub}} -{{if ! $hub.deleted }} -<tr><td> -{{$hub.hubloc_url}} ({{$hub.hubloc_addr}})</td> -<td> -{{if $hub.primary}}<button class="btn btn-std"><i class="icon-check"></i></button>{{else}}<button class="btn btn-std" onclick="primehub({{$hub.hubloc_id}}); return false;" ><i class="icon-check-empty" ></i></button>{{/if}} -</td> -<td><button class="btn btn-std" onclick="drophub({{$hub.hubloc_id}}); return false;"><i class="icon-trash"></i></button></td> -</tr> -{{/if}} -{{/foreach}} -</table> +<div class="generic-content-wrapper"> + <div class="section-title-wrapper"> + <script> + function primehub(id) { + $.post(baseurl + '/locs','primary='+id,function(data) { window.location.href=window.location.href; }); + } + function drophub(id) { + $.post(baseurl + '/locs','drop='+id,function(data) { window.location.href=window.location.href; }); + } + </script> + <button class="btn btn-success btn-xs pull-right" onclick="window.location.href='/locs/f=&sync=1'; return false;"><i class="icon-refresh"></i> {{$sync}}</button> + <h2>{{$header}}</h2> + </div> + <div class="section-content-wrapper-np"> + <div class="section-content-warning-wrapper"> + {{$sync_text}} + </div> + <div class="section-content-info-wrapper"> + {{$drop_text}}<br> + {{$last_resort}} + </div> + <table id="locs-index"> + <tr> + <th>{{$loc}}</th> + <th>{{$addr}}</th> + <th>{{$mkprm}}</th> + <th>{{$drop}}</th> + </tr> + {{foreach $hubs as $hub}} + {{if ! $hub.deleted }} + <tr> + <td>{{$hub.hubloc_url}}</td> + <td>{{$hub.hubloc_addr}}</td> + <td>{{if $hub.primary}}<i class="icon-check"></i>{{else}}<i class="icon-check-empty primehub" onclick="primehub({{$hub.hubloc_id}}); return false;"></i>{{/if}}</td> + <td><i class="icon-trash drophub" onclick="drophub({{$hub.hubloc_id}}); return false;"></i></td> + </tr> + {{/if}} + {{/foreach}} + </table> + </div> </div> -<div class="clear"></div> -<button class="btn btn-std" onclick="window.location.href='/locs/f=&sync=1'; return false;">{{$sync}}</button> |