<!-- BEGIN [% component.name %] -->
<div class="indent">
<h4 class="blue">Service assessment:</h4>
<table class="xborders">
<tr>
<td class="title" align="right" valign="top">Opinion:</td>
<td valign="top">
[% class = questionnaire.service.opinion.match('unhappy') # highlight
? 'red' : 'normal' %]
Happy
<input type="radio" name="opinion" value="happy"
[% 'checked' IF questionnaire.service.opinion == 'happy' %] />
<span class="[% class %]">Not happy</span>
<input type="radio" name="opinion" value="unhappy"
[% 'checked' IF questionnaire.service.opinion == 'unhappy' %] />
[% error_opinion %]
</td>
</tr>
</table>
</div>
<!-- END [% component.name %] -->