|
{% load widget_tweaks %}
|
|
|
|
<form action="{{ request.get_full_path }}" method="post">
|
|
{% csrf_token %}
|
|
<p>
|
|
<label for="id_date">Date :</label>
|
|
{{ form.date.errors }}
|
|
<input id="id_date" class="date" name="date" value="{% now "d/m/Y" %}"/>
|
|
</p>
|
|
<p>
|
|
<label for="id_comment">Commentaire :</label>
|
|
<textarea id="id_comment" style="width: 90%;" name="comment"></textarea>
|
|
</p>
|
|
</form>
|