summaryrefslogtreecommitdiff
path: root/templates/vote.html
diff options
context:
space:
mode:
authoretienne2008-12-17 00:07:14 +0000
committeretienne2008-12-17 00:07:14 +0000
commited2ab8aec512c1dfd6e5f940d7a9e6f73a3964e8 (patch)
tree41f978d6b82947ab7ca1b9b256f45065d478c4d9 /templates/vote.html
parent7e1a52328266738aaf7887169209bf77a3cf5ba2 (diff)
Corrections for W3C validation
Diffstat (limited to 'templates/vote.html')
-rw-r--r--templates/vote.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/vote.html b/templates/vote.html
index 56edfda..e270f02 100644
--- a/templates/vote.html
+++ b/templates/vote.html
@@ -98,18 +98,18 @@
<table class='comment'>
<tr>
<td><label for='comment_author'>{% trans "Author name" %}</label></td>
- <td><input type='text' name='comment_author'/></td>
+ <td><input type='text' id='comment_author' name='comment_author'/></td>
</tr>
<tr>
<td><label for='comment'>{% trans "Comment"%}</label></td>
- <td><textarea name='comment'></textarea></td>
+ <td><textarea id='comment' name='comment' cols='' rows=''></textarea></td>
</tr>
<tr><td colspan='2' id='tdsubmit'><input type='submit' class='submit' value='{% trans "Send" %}'/></td></tr>
</table>
</form>{%endif%}
<ul>{%for comment in comments%}
<li><p class='author'>{{comment.author_name}}, {{comment.date|date:_("DATETIME_FORMAT")}} :</p>
- <pre>{{comment.text}}</pre>{%endfor%}
- </dl>
+ <pre>{{comment.text}}</pre></li>{%endfor%}
+ </ul>
</div>{%endif%}
{% endblock %} \ No newline at end of file