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

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

{%endblock%} {%block content%}

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
creator
created
last updated
last post by
posts
{%for thread in threads%}
{{thread.creator}}
{{ts(thread.created)}}
{{ts(thread.updated)}}
{{thread.last_user}}
{{thread.num_replies}}
{%endfor%}
{%endblock%}