{% extends "snippets/layout.html" %} {% block title %}{{ snippet.title }}{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block body %}
By {{ snippet.author.name }} filed in {{ snippet.category.name }} {% if snippet.author == g.user %} (edit) {% endif %} {{ snippet.rendered_body }} {% if snippet.comments or g.user %}
{{ comment.title or "Comment" }} by {{ comment.author.name }} on {{ comment.pub_date.strftime('%Y-%m-%d @ %H:%M') }}
Title:
{{ request.form.text }}
Comments
{% for comment in snippet.comments %}-
{{ comment.rendered_text }}
{% endfor %}
{% endif %} {% if g.user %}{{ comment.title or "Comment" }} by {{ comment.author.name }} on {{ comment.pub_date.strftime('%Y-%m-%d @ %H:%M') }}
Add Comment