Alpha update

This commit is contained in:
ebassi -
parent 3a568602da
commit a06cdba30e
28 changed files with 615 additions and 589 deletions

View file

@ -15,7 +15,7 @@
<label for="tagging_tagcolor">{{ lang('ACP_TAGGING_TAGCOLOR') ~ lang('COLON') }}</label><br /><span>{{ lang('ACP_TAGGING_TAGCOLOR_EXPLANATION') }}</span>
</dt>
<dd>
<input type="color" id="tagging_tagcolor" name="tagging_tagcolor" value="{{ TAG_COLOR }}" style="width:5%;">
<input type="color" id="tagging_tagcolor" name="tagging_tagcolor" value="#{{ TAG_COLOR }}" style="width:5%;">
</dd>
</dl>
@ -47,4 +47,4 @@
{{ S_FORM_TOKEN }}
</fieldset>
</form>
</form>

View file

@ -22,7 +22,7 @@
{% for TAG in loops.tag_list %}
<tr>
<td>{{ TAG.TITLE }}</td>
<td style="background: {{ TAG.COLOR }}"></td>
<td style="background: #{{ TAG.COLOR }}"></td>
<td>{% if TAG.ACTIVE %}{{ lang('YES') }}{% else %}{{ lang('NO') }}{% endif %}</td>
<td>{% if TAG.SEARCHABLE %}{{ lang('YES') }}{% else %}{{ lang('NO') }}{% endif %}</td>
<td><a href="{{ TAG.EDIT_LINK }}">{{ lang('ACP_TAGGING_EDIT') }}</a></td>
@ -73,15 +73,19 @@
<fieldset>
<legend>{{ lang('ACP_TAGGING_SEARCH') }}</legend>
{% if TAG_SEARCH_UNAVAILABLE %}
<b><font color="red">{{ lang('ACP_TAGGING_TAGSEARCH_UNAVAILABLE') }}</font></b>
{% else %}
<dl>
<dt>
<label for="tagging_tagsearch">{{ lang('ACP_TAGGING_TAGSEARCH') ~ lang('COLON') }}</label><br /><span>{{ lang('ACP_TAGGING_TAGSEARCH_EXPLANATION') }}</span>
</dt>
<dd>
<label><input type="radio" class="radio" name="tagging_tagsearch" value="1" id="tagging_tagsearch" {% if TAG_SEARCH %}checked="checked"{% endif %} /> {{ lang('YES') }}</label>
<label><input type="radio" class="radio" name="tagging_tagsearch" value="0" {% if not TAG_SEARCH %}checked="checked"{% endif %} /> {{ lang('NO') }}</label>
<label><input type="radio" class="radio" name="tagging_tagsearch" value="1" id="tagging_tagsearch" {% if TAG_SEARCH %}checked="checked"{% endif %}/> {{ lang('YES') }}</label>
<label><input type="radio" class="radio" name="tagging_tagsearch" value="0" {% if not TAG_SEARCH %}checked="checked"{% endif %}/> {{ lang('NO') }}</label>
</dd>
</dl>
{% endif %}
</fieldset>
<fieldset>
@ -125,4 +129,4 @@
{{ S_FORM_TOKEN }}
</fieldset>
</form>
</form>