RSS Git Download  Clone
Raw Blame History
  [% META title = 'Admin » Result Data Types' -%]
<!-- BEGIN admin/config/resultdatatypes/default.tt -->


	[% INCLUDE admin/lab_test_nav.tt page = 'lab_test' %]

	[% result_data_types_dfv_js %]

	[% # PROCESS admin/options_nav.tt page = 'request-options' %]

	<h2 align="center">Result Data Types</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/result-data-types/update"
            name="new-data-type" id="new-data-type" [% result_data_types_onsubmit %]>
            <div class="indent">
                <table>
                    <tr>
                        <td class="label">Description:</td>
                        <td class="content">
							[% PROCESS site/ajax_input.tt field = 'description'
								id = "data_type" size = 20 %]
                            [% error_description %]
                        </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">&nbsp;</p>

	[% IF data_types.size %]
	<div class="[% dfv_errors ? 'itemhidden' : 'visible' %]">
		<table>
			<tr>
				<th></th>
				<th>Description</th>
				<th>Active</th>
			</tr>

			[% FOREACH entry IN data_types %]
			<tr>
				<td>
                    [% loop.count %]
                </td>
				<td>
					<input type="text" size="20" name="descrition"
                            value="[% entry.description | 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/result-data-types/edit/[% entry.id %]">Edit</a>
				</td>
			 </tr>
			[% END %]

		</table>
	</div>
	[% END %]
<!-- END admin/config/resultdatatypes/default.tt -->