Few files were added and some were modified.
This commit is contained in:
parent
b8723ba667
commit
ec1ffc901a
4 changed files with 208 additions and 1 deletions
|
@ -0,0 +1,69 @@
|
|||
<a href="#" class="btn btn-info" onclick="$('#collectionsearchdiv').toggle();return false;">
|
||||
Advanced Search
|
||||
<i class="glyphicon glyphicon-search"></i>
|
||||
</a>
|
||||
<div class="search_box" id="collectionsearchdiv" {if $smarty.cookies.show_searchdiv_search!='show'} style="display:none"{/if}>
|
||||
<form action="collection_manager.php" method="get" name="search_collections">
|
||||
<div class="form-group">
|
||||
<label for="title">Collection name</label>
|
||||
<input name="title" type="text" class="form-control" id="title" value="{'title'|get_form_val:true}" />
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="collectionid">Collection id</label>
|
||||
<input name="collectionid" type="text" class="form-control" id="collectionid" value="{'collectionid'|get_form_val:true}" />
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="tags">Collection tags</label>
|
||||
<input name="tags" type="text" class="form-control" id="tags" value="{'tags'|get_form_val:true}" />
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="userid">Userid</label>
|
||||
<input name="userid" type="text" class="form-control" id="userid" value="{'userid'|get_form_val:true}" />
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="active">Active</label>
|
||||
<select name="active" id="active" class="form-control">
|
||||
<option value="" ></option>
|
||||
<option value="yes" {if $smarty.get.active=='yes'} selected="selected"{/if}>Yes</option>
|
||||
<option value="no" {if $smarty.get.active=='no'} selected="selected"{/if}>No</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="broadcast">Broadcast</label>
|
||||
<select name="broadcast" id="broadcast" class="form-control">
|
||||
<option value="" ></option>
|
||||
<option value="public" {if $smarty.get.broadcast=='public'} selected="selected"{/if}>Public</option>
|
||||
<option value="private" {if $smarty.get.broadcast=='private'} selected="selected"{/if}>Private</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="featured">Featured</label>
|
||||
<select name="featured" id="featured" class="form-control">
|
||||
<option value="yes" {if $smarty.get.featured=='yes'} selected="selected"{/if}>Yes</option>
|
||||
<option value="no" {if $smarty.get.featured=='no'} selected="selected"{/if}>No</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="type">Type</label>
|
||||
<select name="collection_type" id="collection_type" class="form-control">
|
||||
<option value="" ></option>
|
||||
{foreach from=$cbcollection->types item=name key=type}
|
||||
<option value="{$type}" {if $smarty.get.collection_type == $type}selected="selected"{/if}>{$name}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="order">Order</label>
|
||||
<select name="order" id="order" class="form-control">
|
||||
<option value="collection_id" {if $smarty.get.order == 'collection_id'}selected="selected"{/if}>ID</option>
|
||||
<option value="total_objects" {if $smarty.get.order == 'total_objects'}selected="selected"{/if}>Total Items</option>
|
||||
<option value="collection_name" {if $smarty.get.order == 'collection_name'}selected="selected"{/if}>Name</option>
|
||||
<option value="views" {if $smarty.get.order == 'views'}selected="selected"{/if}>Views</option>
|
||||
</select>
|
||||
</div>
|
||||
<br />
|
||||
<div class="button">
|
||||
<input type="submit" name="search" id="search" value="Search Form" class="btn btn-primary"/>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
|
@ -0,0 +1,79 @@
|
|||
<a href="#" class="btn btn-info" onclick="$('#groupsearchdiv').toggle();return false;">
|
||||
Advanced Search
|
||||
<i class="glyphicon glyphicon-search"></i>
|
||||
</a>
|
||||
<div class="search_box" id="groupsearchdiv" {if $smarty.cookies.show_groupsearchdiv_search!='show'} style="display:none"{/if}>
|
||||
<form id="group_search" name="group_search" method="get" action="groups_manager.php" >
|
||||
<table class="table table-bordered table-striped">
|
||||
<tr>
|
||||
<td>
|
||||
<label for="title">Group title</label>
|
||||
</td>
|
||||
<td>
|
||||
<div class="form-group">
|
||||
<input name="title" type="text" class="form-control" id="title" value="{'title'|get_form_val:true}" />
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="groupid">Group id</label>
|
||||
</td>
|
||||
<td>
|
||||
<div class="form-group">
|
||||
<input name="group_id" type="text" class="form-control" id="groupid" value="{'group_id'|get_form_val:true}" />
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="tags">Group tags</label>
|
||||
</td>
|
||||
<td>
|
||||
<div class="form-group">
|
||||
<input name="tags" type="text" class="form-control" id="tags" value="{'tags'|get_form_val:true}"/>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Featured</td>
|
||||
<td>
|
||||
<div class="form-group">
|
||||
<label for="featured"></label>
|
||||
<select name="featured" id="featured" class="form-control">
|
||||
<option value=""></option>
|
||||
<option value="yes"{if $smarty.get.featured=='yes'} selected="selected"{/if}>Yes</option>
|
||||
<option value="no"{if $smarty.get.featured=='no'} selected="selected"{/if}>No</option>
|
||||
</select>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Active</td>
|
||||
<td>
|
||||
<div class="form-group">
|
||||
<select name="active" id="active" class="form-control">
|
||||
<option value=""></option>
|
||||
<option class="f" value="yes" {if $smarty.get.active=='yes'} selected="selected"{/if}>Yes</option>
|
||||
<option class="f" value="no" {if $smarty.get.active=='no'} selected="selected"{/if}>No</option>
|
||||
</select>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Userid</td>
|
||||
<td>
|
||||
<div clas="form-group">
|
||||
<input name="userid" type="text" class="form-control" id="userid" value="{'userid'|get_form_val:true}"/>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Category</td>
|
||||
<td>
|
||||
{$formObj->createField($cat_array)}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<input type="submit" name="search" id="search" value="Search Form" class="btn btn-primary"/>
|
||||
</form>
|
||||
</div>
|
|
@ -0,0 +1,59 @@
|
|||
<a href="#" class="btn btn-info" onclick="$('#membersearchdiv').toggle();return false;">
|
||||
Advanced Search
|
||||
<i class="glyphicon glyphicon-search"></i>
|
||||
</a>
|
||||
<div class="search_box" id="membersearchdiv" {if $smarty.cookies.show_memsearchdiv_search!='show'} style="display:none"{/if}>
|
||||
<form id="user_search" name="user_search" method="get" action="members.php" class="video_search">
|
||||
<div class="form-group">
|
||||
<label for="userid">Userid</label>
|
||||
<input name="userid" type="text" class="form-control" id="userid" value="{'userid'|get_form_val:true}" />
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="username">Username</label>
|
||||
<input name="username" type="text" class="form-control" id="username" value="{$user.username}" />
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="email">Email</label>
|
||||
<input name="email" type="text" class="form-control" id="email" value="{'email'|get_form_val:true}" />
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="status">Status</label>
|
||||
<select name="status" id="status" class="form-control">
|
||||
<option value="" ></option>
|
||||
<option value="Ok" {if $smarty.get.status=='Ok'} selected="selected"{/if}>OK</option>
|
||||
<option value="ToActivate" {if $smarty.get.status=='ToActivate'} selected="selected"{/if}>Inactive</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="banned">Banned</label>
|
||||
<select name="ban" id="ban" class="form-control">
|
||||
<option value="yes" {if $smarty.get.ban=='yes'} selected="selected"{/if}>Yes</option>
|
||||
<option value="no" {if $smarty.get.ban=='no'} selected="selected"{/if}>No</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="featured">Featured</label>
|
||||
<select name="featured" id="featured" class="form-control">
|
||||
<option value="Yes" {if $smarty.get.featured=='Yes'} selected="selected"{/if}>Yes</option>
|
||||
<option value="No" {if $smarty.get.featured=='No'} selected="selected"{/if}>No</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="level">Level</label>
|
||||
<select name="level" id="level" class="form-control">
|
||||
<option value="">------</option>
|
||||
{assign var=levels value=$userquery->get_levels()}
|
||||
{foreach from=$levels item=level}
|
||||
<option value="{$level.user_level_id}" {if $smarty.get.level==$level.user_level_id} selected="selected"{/if}>{$level.user_level_name}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="category">Category</label>
|
||||
{$formObj->createField($cat_array)}
|
||||
</div>
|
||||
<div class="button">
|
||||
<input type="submit" name="search" id="search" value="Search Form" class="btn btn-primary"/>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
|
@ -14,7 +14,7 @@
|
|||
<th>Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tbody class="reports">
|
||||
{foreach from=$comments item=comment}
|
||||
<tr>
|
||||
<td class="center">
|
||||
|
|
Loading…
Add table
Reference in a new issue