{% extends "board/base.html" %} {% load post_body %} {% load l10n %} {% block title %} {% with title=board.url %} {{ block.super }} {% endwith %} {% endblock title %} {% block content %} {# board header #}
 

/{{ board.url }}/ - {{ board.name }}

 

{# post creation form #}
 
{% csrf_token %} {{ form.as_table }}
  {% localize on %}Max image size{% endlocalize %}: {{ max_upload_size|measure_bytes }}
 
 

{# posts #}
{% include "board/post_snippet.html" %} {% for post in post.replies.all %}
{% include "board/post_snippet.html" %}
{% endfor %}
{% endblock content %}