{% extends "base.html" %} {% load i18n %} {% load svmarkup %} {% block title %} {{object.group.name}} - {{object.get_tracker_name}}{% trans ": " %} {{object.get_shortcut}}, {{object.get_summary|truncatewords:5}} {% endblock %} {% block icon %}{{object.get_icon_name}}{% endblock %} {% block extrahead %} {% endblock %} {% block content %}
{% csrf_token %}

{{object.get_shortcut}}{% trans ": " %} {{object.get_summary}}

{{object.get_form}}
{% trans "Submitted by" %}{% trans ": " %} {% if object.submitted_by_id %} {% if object.submitted_by %} {{object.submitted_by.get_full_name}} <{{object.submitted_by.username}}> {% else %} {% trans "Invalid user ID" %} {% endif %} {% else %} {% trans "Anonymous" %} {% endif %}
{% trans "Submitted on" %}{% trans ": " %} {{ object.date }}
{% trans "Summary" %}{% trans ": "%}

{% trans "Post a comment" %}

{% trans "Add a new comment" %}{% trans ": " %}

{% filter force_escape %}{% trans "Comment type & canned response" %}{% endfilter %}{% trans ": " %}
  {% if 0 %} {% else %} {% trans "No canned response available" %}   ({% trans "Or define a new canned response" %}) {% endif %}

{% trans "Discussion" %}

{% for comment in object.comment_set.all reversed %} {% endfor %}
{{comment.date}}, {% blocktrans with forloop.counter as number %}comment #{{number}}{% endblocktrans %}{% trans ": " %}
{{ comment.message|svmarkup_rich }}
{% if comment.posted_by_id %} {% if comment.posted_by %} {{comment.posted_by.get_full_name}} <{{comment.posted_by.username}}> {% else %} {% trans "Invalid user ID" %} {% endif %} {% else %} {% trans "Anonymous" %} {% endif %}
{{object.date}}, {% trans "original submission" %}{% trans ": " %}
{{ object.details|svmarkup_full }}
{% if object.submitted_by_id %} {% if object.submitted_by %} {{object.submitted_by.get_full_name}} <{{object.submitted_by.username}}> {% else %} {% trans "Invalid user ID" %} {% endif %} {% else %} {% trans "Anonymous" %} {% endif %}

{% trans "Attached files" %}

{% trans "Dependencies" %}

{% trans "Mail notification carbon-copy list" %}

{% trans "Votes" %}

{% trans "History" %}

{% blocktrans count object.itemhistory_set.count as count %}Follows {{count}} latest change.{% plural %}Follow {{count}} latest changes.{% endblocktrans %}

{% for history in object.itemhistory_set.all %} {% ifchanged history.date history.mod_by %} {% else %} {% endifchanged %} {% endfor %}
Date Changed by Updated field Previous value => Replaced By
{{history.date}} {% if history.mod_by_id %} {% if history.mod_by %} {{history.mod_by.username}} {% else %} {% trans "Invalid user ID" %} {% endif %} {% else %} {% trans "Anonymous" %} {% endif %}
{{history.field}} {{history.old_value}} => {{history.new_value}}
{% endblock %} {% comment %} Local Variables: ** mode: django-html ** tab-width: 4 ** indent-tabs-mode: nil ** End: ** {% endcomment %}