aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/admin_channels.tpl
diff options
context:
space:
mode:
authorsasiflo <redmatrixdev@sasiflo.de>2014-04-06 00:34:52 +0200
committersasiflo <redmatrixdev@sasiflo.de>2014-04-06 00:34:52 +0200
commit9f54a8f96b7664c82ab9228608970a7ce6bd41a9 (patch)
tree1034e7a1909c76bff280055508638b820242c9e6 /view/tpl/admin_channels.tpl
parent8b0721cf3587a48653a126330217fb4bc32c9ffa (diff)
downloadvolse-hubzilla-9f54a8f96b7664c82ab9228608970a7ce6bd41a9.tar.gz
volse-hubzilla-9f54a8f96b7664c82ab9228608970a7ce6bd41a9.tar.bz2
volse-hubzilla-9f54a8f96b7664c82ab9228608970a7ce6bd41a9.zip
Hope I have repaired the channel admin page.
Channel blocking and deleting was copied from user actions. This was not done to an end. Hope what I do is enough to enable channel blocking and deleting the correct way. On deletion all entities that belong to the channel are deleted. But the channel itself is just marked as deleted. Do not really understand why it is done this way.
Diffstat (limited to 'view/tpl/admin_channels.tpl')
-rwxr-xr-xview/tpl/admin_channels.tpl26
1 files changed, 13 insertions, 13 deletions
diff --git a/view/tpl/admin_channels.tpl b/view/tpl/admin_channels.tpl
index 2ae2a72d6..d8f5f626f 100755
--- a/view/tpl/admin_channels.tpl
+++ b/view/tpl/admin_channels.tpl
@@ -16,35 +16,35 @@
<form action="{{$baseurl}}/admin/channels" method="post">
<input type='hidden' name='form_security_token' value='{{$form_security_token}}'>
- <h3>{{$h_users}}</h3>
- {{if $users}}
+ <h3>{{$h_channels}}</h3>
+ {{if $channels}}
<table id='channels'>
<thead>
<tr>
- {{foreach $th_users as $th}}<th>{{$th}}</th>{{/foreach}}
+ {{foreach $th_channels as $th}}<th>{{$th}}</th>{{/foreach}}
<th></th>
<th></th>
</tr>
</thead>
<tbody>
- {{foreach $users as $u}}
+ {{foreach $channels as $c}}
<tr>
- <td class='channel_id'>{{$u.channel_id}}</td>
- <td class='channel_name'>{{$u.channel_name}}</td>
- <td class='channel_address'>{{$u.channel_address}}</td>
- <td class="checkbox"><input type="checkbox" class="users_ckbx" id="id_user_{{$u.account_id}}" name="user[]" value="{{$u.account_id}}"/></td>
+ <td class='channel_id'>{{$c.channel_id}}</td>
+ <td class='channel_name'>{{$c.channel_name}}</td>
+ <td class='channel_address'>{{$c.channel_address}}</td>
+ <td class="checkbox"><input type="checkbox" class="channels_ckbx" id="id_channel_{{$c.channel_id}}" name="channel[]" value="{{$c.channel_id}}"/></td>
<td class="tools">
- <a href="{{$baseurl}}/admin/users/block/{{$u.account_id}}?t={{$form_security_token}}" title='{{if ($u.blocked)}}{{$unblock}}{{else}}{{$block}}{{/if}}'><i class='icon-ban-circle admin-icons {{if ($u.blocked)}}dim{{/if}}'></i></a>
- <a href="{{$baseurl}}/admin/users/delete/{{$u.account_id}}?t={{$form_security_token}}" title='{{$delete}}' onclick="return confirm_delete('{{$u.name}}')"><i class='icon-remove admin-icons'></i></a>
+ <a href="{{$baseurl}}/admin/channels/block/{{$c.channel_id}}?t={{$form_security_token}}" title='{{if ($c.blocked)}}{{$unblock}}{{else}}{{$block}}{{/if}}'><i class='icon-ban-circle admin-icons {{if ($c.blocked)}}dim{{/if}}'></i></a>
+ <a href="{{$baseurl}}/admin/channels/delete/{{$c.channel_id}}?t={{$form_security_token}}" title='{{$delete}}' onclick="return confirm_delete('{{$c.channel_name}}')"><i class='icon-remove admin-icons'></i></a>
</td>
</tr>
{{/foreach}}
</tbody>
</table>
- <div class='selectall'><a href='#' onclick="return selectall('users_ckbx');">{{$select_all}}</a></div>
- <div class="submit"><input type="submit" name="page_users_block" value="{{$block}}/{{$unblock}}" /> <input type="submit" name="page_channels_delete" value="{{$delete}}" onclick="return confirm_delete_multi()" /></div>
+ <div class='selectall'><a href='#' onclick="return selectall('channels_ckbx');">{{$select_all}}</a></div>
+ <div class="submit"><input type="submit" name="page_channels_block" value="{{$block}}/{{$unblock}}" /> <input type="submit" name="page_channels_delete" value="{{$delete}}" onclick="return confirm_delete_multi()" /></div>
{{else}}
- NO USERS?!?
+ NO CHANNELS?!?
{{/if}}
</form>
</div>