0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
templates
/
[
Home
]
File: tiki-theme_control.tpl
{* $Id: tiki-theme_control.tpl 53562 2015-01-19 16:39:01Z jonnybradley $ *} {title help="Theme+Control"}{tr}Theme Control{/tr}: {tr}Categories{/tr}{/title} <div class="t_navbar btn-group"> {button href="tiki-theme_control_objects.php" class="btn btn-default" _text="{tr}Control by Objects{/tr}"} {button href="tiki-theme_control_sections.php" class="btn btn-default" _text="{tr}Control by Sections{/tr}"} </div> <h2>{tr}Assign themes to categories{/tr}</h2> <form action="tiki-theme_control.php" method="post" class="form-inline" role="form"> <div class="form-group"> <label for="categoryId">{tr}Category{/tr}</label> <select name="categoryId" class="form-control input-sm"> {foreach from=$categories key=categoryId item=category} <option value="{$categoryId|escape}"> {$category.name|escape} (Id:{$categoryId}) </option> {/foreach} </select> </div> <div class="form-group"> <label for="theme">{tr}Theme{/tr}</label> <select name="theme" class="form-control input-sm"> {foreach from=$themes key=theme item=theme_name} <option value="{$theme|escape}">{$theme_name}</option> {/foreach} </select> </div> <input type="submit" class="btn btn-primary btn-sm" name="assign" value="{tr}Assign{/tr}"> </form> <h2>{tr}Assigned categories{/tr}</h2> {include file='find.tpl'} <form action="tiki-theme_control.php" method="post" role="form" class="form"> <div class="table-responsive themecat-table"> <table class="table normal"> <tr> <th> <button type="submit" class="btn btn-warning btn-sm" name="delete" title="{tr}Delete selected{/tr}" {if !$channels}disabled{/if}> {icon name="delete"} </button> </th> <th> <a href="tiki-theme_control.php?offset={$offset}&sort_mode={if $sort_mode eq 'name_desc'}name_asc{else}name_desc{/if}"> {tr}Category{/tr} </a> </th> <th> <a href="tiki-theme_control.php?offset={$offset}&sort_mode={if $sort_mode eq 'theme_desc'}theme_asc{else}theme_desc{/if}"> {tr}Theme{/tr} </a> </th> </tr> {section name=user loop=$channels} <tr> <td class="checkbox-cell"> <input type="checkbox" name="categoryIds[{$channels[user].categId}]"> </td> <td class="text"> {$channels[user].name|escape} (Id:{$channels[user].categId}) </td> <td class="text"> {$channels[user].theme} </td> </tr> {/section} </table> </div> </form> {pagination_links cant=$cant_pages step=$prefs.maxRecords offset=$offset}{/pagination_links}