[% META title = 'Admin » Request Options' -%]
<!-- BEGIN admin/config/requestoptions/default.tt -->
[% request_options_dfv_js %]
[% PROCESS admin/options_nav.tt page = 'request-options' %]
<h2 align="center">Request Options</h2>
[% IF dfv_errors %]
<p class="error">[% c.config('msg').dfv_errors %]</p>
[% END %]
[% # PROCESS dumper.tt dump = dfv_errors %]
<p class="title">
[% div_name = 'new'; INCLUDE site/snippets/toggleview.tt %]
Add new entry
</p>
<div class="[% dfv_errors ? 'visible' : 'itemhidden' %]" id="[% div_name %]">
<form method="get" action="[% app_url %]/config/request-options/update"
name="new_request_option" id="new_request_option" [% request_options_onsubmit %]>
<div class="indent">
<table>
<tr>
<td class="label">Option name:</td>
<td class="content">
[% PROCESS site/ajax_input.tt field = 'option_name'
id = "option_name" size = 20 %]
[% error_option_name %]
</td>
</tr>
<tr>
<td class="label">Option label:</td>
<td class="content">
[% PROCESS site/ajax_input.tt field = 'option_label'
id = "option_label" size = 20 %]
[% error_option_label %]
</td>
</tr>
<tr>
<td class="label">Active:</td>
<td class="content">
<select name="is_active" [% site.html.onfocus %]>
[% FOREACH option IN ['yes', 'no'] %]
<option value="[% option %]">[% option %]</option>
[% END %]
</select>
[% error_is_active %]
</td>
</tr>
<tr>
<td class="borderless" colspan="2" align="center">[% site.html.submit %]</td>
</tr>
</table>
</div>
</form>
</div>
<p class="spacer"> </p>
[% IF request_opts.size # only empty if new db %]
<div class="[% dfv_errors ? 'itemhidden' : 'visible' %]">
<table>
<tr>
<th></th>
<th>Option name</th>
<th>Option label</th>
<th>Active</th>
</tr>
[% FOREACH entry IN request_opts %]
<tr>
<td>
[% loop.count %]
</td>
<td>
<input type="text" size="20" name="option_name"
value="[% entry.option_name | html %]"
[% site.html.disabled %] />
</td>
<td>
<input type="text" size="20" name="option_label"
value="[% entry.option_label | html %]"
[% site.html.disabled %] />
</td>
<td>
<select name="is_active" [% site.html.disabled %]>
[% FOREACH option IN ['yes', 'no'] %]
<option value="[% option %]" [% 'selected' IF option == entry.is_active %]>
[% option %]
</option>
[% END %]
</select>
</td>
<td align="center">
<a href="[% app_url %]/config/request-options/edit/[% entry.id %]">Edit</a>
</td>
</tr>
[% END %]
</table>
</div>
[% END %]
<!-- END admin/config/requestoptions/default.tt -->