{% extends 'base.html' %} {% from 'common.html' import ts, tag, disp_user %} {% block header %}

{% block title %}apioforum{%endblock%}

{%endblock%} {%block nmcontent%}

welcome to the apioforum

forum rules: do not be a bad person. do not do bad things.

{% if g.user %}

create new thread

{% else %}

please log in to create a new thread

{% endif %}
name & tags
tags
creator
created
last updated
last post by
posts
{%for thread in threads%}
{{thread.title}} {% if thread_tags[thread.id]|length > 0 %} {% for the_tag in thread_tags[thread.id] %} {{tag(the_tag)}} {% endfor %} {%endif%}
{% for the_tag in thread_tags[thread.id] %} {{tag(the_tag)}} {% endfor %}
{{disp_user(thread.creator)}}
{{ts(thread.created)}}
{{ts(thread.updated)}}
{{disp_user(thread.last_user)}}
{{thread.num_replies}}
{%endfor%}
{%endblock%}