{% extends "page.html" %} {% block title %} {% if context.id %} Issue {{ context.id }}: {{ context.title }} - {{ config.TRACKER_NAME }} {% else %} New Issue - {{ config.TRACKER_NAME }} {% endif %} {% endblock %} {% block body_title %} {% if not (context.id or context.is_edit_ok()) %} New Issue {% elif not context.id and context.is_edit_ok() %} New Issue Editing {% elif context.id and not context.is_edit_ok() %} Issue {{ context.id }} {% else %} Issue {{ context.id }} Editing {% endif %} {% endblock %} {% block content %} {% if not (context.is_view_ok() or request.user.hasRole('Anonymous')) %}

You are not allowed to view this page.

{% endif %} {% if not context.is_view_ok() and request.user.hasRole('Anonymous') %}

Please login with your username and password.

{% endif %} {% if context.is_view_ok() %}
{% if context.is_edit_ok() %} {% endif %}
Title {{ context.title.field(size=60)|safe }}
Priority {{ context.priority.menu()|safe }} Status {{ context.status.menu()|safe }}
Superseder {{ context.superseder.field(showid=1, size=20)|safe }} {% if context.is_edit_ok() %} {{ db.issue.classhelp('id,title', property='superseder')|safe }} {% endif %} {% if context.superseder %}
View: {% for sup in context.superseder %} {{ sup.id }}{{ ',' if not loop.last }} {% endfor %} {% endif %}
Nosy List {{ context.nosy.field()|safe }} {% if context.is_edit_ok() %} {{ db.user.classhelp('username,realname,address', property='nosy', width='600')|safe }}
{% endif %}
Assigned To {{ context.assignedto.menu()|safe }} Keywords {{ context.keyword.field()|safe }} {% if context.is_edit_ok() %} {{ db.keyword.classhelp(property='keyword')|safe }} {% endif %}
Change Note
File
  {{ context.submit()|safe }} {% if context.id %} Make a copy {% endif %}
{% if not context.id %}
Note:  highlighted  fields are required.
{% else %}

Created on {{ context.creation }} by {{ context.creator }}, last changed {{ context.activity }} by {{ context.actor }}.

{% endif %} {% if context.files %} {% for file in context.files %} {% endfor %}
Files
File name Uploaded Type Edit Remove
{{ file.name }} {{ file.creator }}, {{ file.creation }} {{ file.type }} {% if file.is_edit_ok() %} edit {% endif %} {% if context.is_edit_ok() %}
{% endif %}
{% endif %} {% if context.messages %} {% for msg in context.messages.reverse() %} {% endfor %}
Messages
msg{{ msg.id }} (view) Author: {{ msg.author }} Date: {{ msg.date }} {% if context.is_edit_ok() %}
{% endif %}
{{ msg.content.hyperlinked()|safe }}
{% endif %} {% if context.id %} {{ context.history()|safe }} {% endif %}
{% endif %} {% endblock %}