clipbucket/upload/admin_area/styles/cb_2014/layout/groups_manager.html

98 lines
6.7 KiB
HTML
Raw Normal View History

2014-05-07 14:06:39 +00:00
<div class="heading clearfix">
<h2 class="pull-left">Groups Manager</h2>
{include file="$layout_dir/blocks/advanced_group_search.html" }
</div>
2014-01-23 14:00:36 +00:00
<form name="group_manage" method="post">
2014-01-27 14:02:25 +00:00
<div class="btn-group">
<input class="btn btn-primary btn-xs" type="submit" name="activate_selected" value="Activate" class="button"/>
<input class="btn btn-primary btn-xs" type="submit" name="deactivate_selected" value="Deactivate" class="button"/>
<input class="btn btn-primary btn-xs" type="submit" name="make_featured_selected" value="Make Featured" class="button"/>
<input class="btn btn-primary btn-xs" type="submit" name="make_unfeatured_selected" value="Make Unfeatured" class="button"/>
<input class="btn btn-primary btn-xs" type="submit" name="delete_selected" value="Delete" class="button"
onclick="return _cb.confirm_it('Are you sure you want to delete selected Groups(s)')"/>
2014-01-23 14:00:36 +00:00
</div>
2014-01-27 14:02:25 +00:00
<table class="table table-bordered table-striped">
<tr>
<td width="30">
<input type="checkbox" name="checkall" onclick="checkUncheckAll(this);"/></td>
2014-01-27 14:02:25 +00:00
<td width="50">GP-ID</td>
<td class="head">Details</td>
2014-02-03 11:41:19 +00:00
<td>Options</td>
2014-01-27 14:02:25 +00:00
</tr>
{section name=gp_list loop=$groups}
<tr>
<td width="30" >
<input name="check_group[]" type="checkbox" id="check_group" value="{$groups[gp_list].group_id}"/>
</td>
<td width="50" >{$groups[gp_list].group_id}</td>
<td>
2014-02-04 14:08:41 +00:00
<div class="row">
2014-01-27 14:02:25 +00:00
<div class="col-md-10">
2014-02-04 14:08:41 +00:00
<div class="row">
<div class="col-md-3">
2014-01-27 14:02:25 +00:00
<img src="{$cbgroup->get_group_thumb($groups[gp_list])}" width="50" height="50"/>
2014-02-04 14:08:41 +00:00
</div>
<div class="col-md-9">
2014-01-27 14:02:25 +00:00
<a href="{$baseurl}/view_group.php?url={$groups[gp_list].group_url}" target="_blank"> {$groups[gp_list].group_name}
</a>
2014-02-04 14:08:41 +00:00
<div class="labels">
{if $groups[gp_list].featured=='yes'}<span class="label label-primary">Featured{else}{/if}</span>
<span class="label"><span>Members:</span>{$groups[gp_list].total_members|number_format}</span>
2014-02-03 11:41:19 +00:00
<span class="label {if $groups[gp_list].active=='yes'}label-success{else}label-warning{/if}"><span></span>{if
2014-01-27 14:02:25 +00:00
$groups[gp_list].active=="yes"} Active{else}Inactive{/if}</span>
2014-02-04 14:08:41 +00:00
<span class="label label-info"> {if $groups[gp_list].group_privacy =="0"}Public{elseif $groups[gp_list].group_privacy =="1"}Private{else}Invited{/if}</span>
2014-01-27 14:02:25 +00:00
</div>
2014-02-04 14:08:41 +00:00
</div>
</div>
</div>
<div class="col-md-2">
Owner: <a href="view_user.php?uid={$groups[gp_list].userid}">{$groups[gp_list].userid|get_username}</a></strong>
</div>
</div>
2014-01-27 14:02:25 +00:00
</td>
<td>
<div id="vid_opt-{$groups[gp_list].group_id}" class="dropdown">
<button id="dropdownMenu1" class="btn btn-primary btn-xs dropdown-toggle pull-right"
data-toggle="dropdown">Actions <i class="caret"></i></button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenu1" role="menu">
<li role="presentation"><a role="menuitem" tabindex="-1" href="{group_link details=$groups[gp_list]}"target="_blank">View</a></li>
<li role="presentation"><a role="menuitem" tabindex="-1" href="edit_group.php?group_id={$groups[gp_list].group_id}">Edit</a>
</li>
{if $groups[gp_list].featured == yes}
<li role="presentation"><a role="menuitem" tabindex="-1" href="?unfeature={$groups[gp_list].group_id}">Make
Unfeatured</a> {/if}
</li>
{if $groups[gp_list].featured == no}
<li role="presentation"><a role="menuitem" tabindex="-1" href="?feature={$groups[gp_list].group_id}">Make
Featured</a> {/if}
</li>
2014-01-23 14:00:36 +00:00
2014-01-27 14:02:25 +00:00
{if $groups[gp_list].active == yes}
<li role="presentation"><a role="menuitem" tabindex="-1" href="?deactivate={$groups[gp_list].group_id}">Deactivate</a>
{else}
</li>
<li role="presentation"><a role="menuitem" tabindex="-1" href="?activate={$groups[gp_list].group_id}">Activate</a>
{/if}
</li>
<li role="presentation"><a role="menuitem" tabindex="-1" href="{$baseurl}/manage_groups.php?mode=manage_videos&gid={$groups[gp_list].group_id}">Manage</a>
</li>
<li class="divider"></li>
<li role="presentation"><a role="menuitem" tabindex="-1" href="?delete_group={$groups[gp_list].group_id}">Delete</a>
</li>
</ul>
</div>
</td>
</tr>
{/section}
</table>
<div class="btn-group">
<input class="btn btn-primary btn-xs" type="submit" name="activate_selected" value="Activate" class="button"/>
<input class="btn btn-primary btn-xs" type="submit" name="deactivate_selected" value="Deactivate" class="button"/>
<input class="btn btn-primary btn-xs" type="submit" name="make_featured_selected" value="Make Featured" class="button"/>
<input class="btn btn-primary btn-xs" type="submit" name="make_unfeatured_selected" value="Make Unfeatured" class="button"/>
<input class="btn btn-primary btn-xs" type="submit" name="delete_selected" value="Delete" class="button" onclick="return _cb.confirm_it('Are you sure you want to delete selected Groups(s)')"/>
2014-01-23 14:00:36 +00:00
</div>
</form>
2014-01-27 14:02:25 +00:00
{include file="$style_dir/blocks/pagination.html" }