{% extends "ticker_base.html" %} {% load i18n %} {% load pagination_tags %} {% load threadedcommentstags %} {% block title %}{% blocktrans with entry.title as entry_title %} News: {{ entry_title }} {% endblocktrans %}{% endblock %} {% block billboard %}

{% trans "News" %}

{% endblock %} {% block content %}

{{ entry.title }}

{% include "ticker/entry.html" %}
{% get_free_threaded_comment_tree for entry as comment_tree %} {% if comment_tree %}

{% trans "Comments" %}

    {% for comment in comment_tree %}
  1. #{{ forloop.counter }} ~ {% trans "By " %}{{ comment.name }} ~ {{ comment.date_submitted|timesince }}

    {% auto_transform_markup comment %}
  2. {% endfor %}
{% endif %}

{% trans "Add comment" %}

    {{ comment_form.as_ul }}
{% endblock %} {% block content-related %}

{% if entry.get_prev %} ← {% trans "Previous" %} {% endif %} {% if entry.get_prev and entry.get_next %} ~ {% endif %} {% if entry.get_next %} {% trans "Next" %} → {% endif %}

{% if entry.get_tags %}

{% trans "Tags for this entry" %}

{% for tag in entry.get_tags %} {{ tag.name }} {% endfor %}

{% endif %} {% if entry.get_related %}

{% trans "Related tags" %}

{% endif %} {{ super.block }} {% endblock %}