diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-03-26 19:34:38 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-03-26 19:34:38 +0100 |
commit | 97eef2b88c5e2e709b8efdb2ea597a5803783e24 (patch) | |
tree | 0601535e8ece4a4a903b612a6eedfb3569dcc693 /view/tpl | |
parent | f714e97d63e61dfda77f4d4ab4eb2b5b5fb06737 (diff) | |
download | volse-hubzilla-97eef2b88c5e2e709b8efdb2ea597a5803783e24.tar.gz volse-hubzilla-97eef2b88c5e2e709b8efdb2ea597a5803783e24.tar.bz2 volse-hubzilla-97eef2b88c5e2e709b8efdb2ea597a5803783e24.zip |
removed link to connected apps by accident
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/locmanage.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/tpl/locmanage.tpl b/view/tpl/locmanage.tpl index 95847d559..6d8e90ad2 100644 --- a/view/tpl/locmanage.tpl +++ b/view/tpl/locmanage.tpl @@ -21,16 +21,16 @@ </div> <table id="locs-index"> <tr> - <th>{{$loc}}</th> <th>{{$addr}}</th> + <th class="hidden-xs">{{$loc}}</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 class="hidden-xs">{{$hub.hubloc_url}}</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> |