2 <style type="text/css">
3 table.canned_comments {
6 table.canned_comments td {
12 <p>{% trans "Choose from the canned comments." %}</p>
15 <input type="hidden" name="comment" id="hidden_comment_wrapper" value="" />
16 <table class="canned_comments" cellpadding="0" cellspacing="0">
17 {% for comment in canned_comments %}
19 <td><input type="radio" name="comment_radio" onchange="jQuery('#hidden_comment_wrapper').val(jQuery(this).val())" id="canned_comment_{{ forloop.counter }}" value="{{ comment }}" /></td>
21 <label for="canned_comment_{{ forloop.counter }}">{{ comment }}</label>