You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

49 lines
1.7 KiB

{title help="Shoutbox"}{tr}Admin Shoutbox Words{/tr}{/title}
<h2>{tr}Add Banned Word{/tr}</h2>
<div class="t_navbar mb-4">
<a role="link" href="tiki-shoutbox.php" class="btn btn-link" title="{tr}Shoutbox{/tr}">
{icon name="comments"} {tr}Shoutbox{/tr}
</a>
</div>
<form method="post" action="tiki-admin_shoutbox_words.php">
<div class="mb-3 row">
<label class="col-form-label col-md-2" for="word">{tr}Word{/tr}</label>
<div class="col-md-9">
<input type="text" name="word" id="word" class="form-control">
</div>
</div>
<div class="text-center mb-5">
<input type="submit" class="btn btn-primary btn-sm" name="add" value="{tr}Add{/tr}">
</div>
</form>
{include file='find.tpl'}
<div class="table-responsive">
<table class="table table-striped table-hover">
<tr>
<th>
<a href="tiki-admin_shoutbox_words.php?offset={$offset}&amp;sort_mode={if $sort_mode eq 'word_desc'}word_asc{else}word_desc{/if}">{tr}Word{/tr}</a>
</th>
<th></th>
</tr>
{section name=user loop=$words}
<tr>
<td class="text">{$words[user].word|escape}</td>
<td class="action">
<a class="tips" href="tiki-admin_shoutbox_words.php?offset={$offset}&amp;sort_mode={$sort_mode}&amp;remove={$words[user].word|escape:"url"}" onclick="return confirmTheLink(this,"{tr}Are you sure you want to delete this word?{/tr}")" title=":{tr}Delete{/tr}">
{icon name='remove'}
</a>
</td>
</tr>
{sectionelse}
{norecords _colspan=2}
{/section}
</table>
</div>
{pagination_links cant=$cant_pages step=$prefs.maxRecords offset=$offset}{/pagination_links}