{% extends 'base.html' %} {% load static %} {% block main %}

Current specs

User spec
{{ target_request.instance.user_spec | pretty_json }}
Admin spec
{{ target_request.instance.spec | pretty_json }}
{% if form.errors %} {% endif %}
{% csrf_token %} {% regroup form|dictsort:"field.group" by field.group as field_groups %} {% for field_group in field_groups %}
{{ field_group.grouper }}
{% for field in field_group.list %}
{{ field }} {% if field.help_text %} {{ field.help_text|safe }} {% endif %}
{% endfor %} {% endfor %}
* Required field

Comments

{{ target_request.state }}
{% for message in comment_messages %}
user image {{ message.sender.username }} {{ message.last_update_date }}

{{ message.content|markdown }}

{% endfor %}
{% endblock %}