{% extends 'boards/base.html' %} {% load cache %} {% load thumbnail %} {% load post_render %} {% block title %}/{{ board.ln }}/{% endblock title %} {% block content %}

/{{ board.ln }}/ - {{ board.name }}

{% if board.description %}

{{ board.decription }}

{% endif %}
[Return]
[Search]
{% if results %} {% for post in results %}

{{ post.author }} {% if post.tripcode %}{% if post.secure %}!{% endif %}!{{ post.tripcode }}{% endif %} posted at {{ post.timestamp }} #{{ post.pk }}

[+] [Delete] [Report]

{% if post.image %}
(File) {{ post.image.size|filesizeformat }} | {{ post.image.width }}x{{ post.image.height }} | {{ post.filename }}
{% endif %} {% cache 500 post post.pk %}
{% if post.image %} {% thumbnail post.image "x300" as im %} {% endthumbnail %}

{% post_render post %}

{% else %}

{% post_render post %}

{% endif %}
{% endcache %}
{% endfor %} {% else %}

No search results.

{% endif %} {% endblock content %}