<!-- BEGIN [% component.name %] -->
<div class="indent">
<h4 class="blue">Lymphadenopathy:</h4>
[% adenopathy_selection = questionnaire.symptoms.adenopathy %]
<table class="xborders">
<tr>
<td class="title" align="right" valign="top">
Assessment: [% error_adenopathy %]
</td>
<td valign="top">
<input type="radio" name="adenopathy" value="none"
[% 'checked' IF adenopathy_selection.match('none') %] />
<span class="[% adenopathy_selection.match('none') ? 'bold' : 'normal' %]">
None</span>
</div>
<div>
<input type="radio" name="adenopathy" value="stable"
[% 'checked' IF adenopathy_selection.match('^stable') %] />
<span class="[% adenopathy_selection.match('^stable') ? 'bold' : 'normal' %]">
Stable</span>
</div>
<div>
<input type="radio" name="adenopathy" value="unstable"
[% 'checked' IF adenopathy_selection.match('unstable') %] />
<span class="[% adenopathy_selection.match('unstable') ? 'bold' : 'normal' %]">
New or worsening</span>
</div>
<div>
<input type="radio" name="adenopathy" value="unstated"
[% 'checked' IF adenopathy_selection.match('unstated') OR
NOT questionnaire.symptoms.adenopathy %] />
<span class="[% adenopathy_selection.match('unstated') ? 'bold' : 'normal' %]">
Not stated</span>
</div>
</td>
<tr>
<td class="title" align="right" valign="top">
Node group: [% error_nodal_option_id %]
</td>
<td valign="top">
[% FOREACH opt IN outreach.menu_options.nodal_options;
is_selected = questionnaire.adenopathy.item(opt.key) ? 1 : 0 %]
<div>
<input type="checkbox" name="nodal_option_id" value="[% opt.key %]"
[% 'checked' IF is_selected %] />
<span class="[% is_selected ? 'bold' : 'normal' %]">[% opt.value %]</span>
</div>
[% END %]
</td>
</table>
</div>
<!-- END [% component.name %] -->