RSS Git Download  Clone
Raw Blame History
<!-- BEGIN [% template.name %] -->
  [% META title = 'Record &raquo; Export Lab Test Results' -%]

    [% # PROCESS dumper.tt dump = sections %]
    
  <h3 class="header">Export Lab Test Results</h3>

	<script type="text/javascript">
		function submitForm(s) {
			s.value = "Compiling data, please wait ...";
	 		return true;
		}
	</script>

    <form action="[% app_url %]/result/export_test_results" method="post"
        onsubmit="return submitForm(this.submit);">
    <p class="bold indent">Select section:
        <select name="section_id">
			<option value="">-- select one --</option>
			[% FOREACH entry IN sections %]
				<option value="[% entry.id %]" %]>
					[% entry.section_name %]
				</option>
			[% END %]
		</select>
        <input type="submit" value="Go" name="submit" class="button" />
    </p>
    </form>
<!-- END [% template.name %] -->