In my last post, I complained that code like the following is redundant: <tr class="fieldrow"> <th><label for="id_subject">Subject:</label></th> <td> {{ form.subject }}<br> {% if form.subject.errors %} <div class="error">{{ form.subject.errors|join:", " }}</div> {% endif %} </td> </tr> <tr class="fieldrow"> <th><label for="id_name"> Poster's Name: </label></th> <td> {{ form.name }}<br> {% if form.name.errors %} <div class="error">{{ form.name.errors|join:", " }}</div> {% endif %} </td> </tr> <tr class="fieldrow"> <th><label for="id_email"> Poster's Email: </label></th> <td> {{ form.email }}<br> {% if form.email.errors %} <div c
This is a purely technical blog concerning topics such as Python, Ruby, Scala, Go, JavaScript, Linux, open source software, the Web, and lesser-known programming languages.
Ad maiorem Dei gloriam inque hominum salutem.