{% 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
id
creator
created
last updated
replies
{%for thread in threads%}
#{{thread.id}}
{{thread.creator}}
{{ts(thread.created)}}
{{ts(thread.updated)}}
{{thread.num_replies}}
{%endfor%}
{%endblock%}