[% META title = 'Admin » Outreach Practices' %]
<!-- BEGIN [% template.name %] -->
[% # PROCESS dumper.tt dump = practices %]
<h2>Configure Outreach Practice Blood Tube Types:</h2>
<table class="indent">
<tr>
<td class="borderless"> </td>
<th>Practice Address</th>
<th>Code</th>
<th>Default</th>
<th>Selected</th>
<td class="borderless"> </td>
</tr>
[% FOREACH practice IN practices %]
<tr>
<td>[% loop.count %]</td>
<td class="">
[% INCLUDE site/display_name.tt
location = practice.display_name
chars = 60
%]
</td>
<td class="">[% practice.organisation_code %]</td>
<td class="">[% tube_type(practice.post_code) %]</td>
<td class="">
[% IF overrides.item(practice.id) %]
<select [% site.html.disabled %]>
<option>[% overrides.item(practice.id) %]</option>
</select>
[% END %]
</td>
<td class="">
<a href="[% app_url %]/config/outreach-practices/edit/[% practice.id %]">
Edit
</a>
</td>
</tr>
[% END %]
</table>