{% extends 'layout_base.html' %} {% block content %}

{% if post.title %}

{{post.title}}

Author : {{post.author.name}}, Bagde : Level {{post.author.get_badge_level()}} {{post.get_json()['time']}} hours ago
{% else %} {{post.author.name}}

{%endif%} {{post.content|markdown}}
{{ form.csrf_token }} {{ form.hidden_tag() }} {{ form.content(only_input=True,class="form-control",style="margin-bottom:10px;")}} {{ form.submit(class="btn w3-button w3-theme-d5 ",style="margin-bottom:10px;") }}

Comments


{%- for comment in comments recursive %}
{{comment.author.name}} {{comment.get_json()['time']}} hours ago

{{comment.content|markdown}}
{%- if comment.replies -%}
{{ loop(comment.replies) }}
{%- endif %} {%- endfor %}
{% endblock %}