Web config editor: Write "MOD", "JANITOR", etc. to instance-config instead of just int representations

This commit is contained in:
Michael Foster 2013-08-03 05:41:01 -04:00
parent d4ad874e09
commit 0d1bfa47f1
3 changed files with 24 additions and 3 deletions

View file

@ -25,7 +25,7 @@
<td>
{% if var.type == 'string' %}
<input name="{{ name }}" type="text" value="{{ var.value|e }}">
{% elseif var.type == 'integer' and var.name.0 == 'mod' and (var.default in ['JANITOR', 'MOD', 'ADMIN', 'DISABLED'] or var.default|slice(0, 14) == "$config['mod']") and var.value <= constant('DISABLED') %}
{% elseif var.permissions %}
<select name="{{ name }}">
<option value="{{ constant('JANITOR') }}"{% if var.value == constant('JANITOR')%} selected{% endif %}>JANITOR</option>
<option value="{{ constant('MOD') }}"{% if var.value == constant('MOD')%} selected{% endif %}>MOD</option>