{% extends "page.html" %} {% block title %} {{ context._classname.capitalize() }} editing - {{ config.TRACKER_NAME }} {% endblock %} {% block body_title %} {{ context._classname.capitalize() }} editing {% endblock %} {% block content %} {% if not (context.is_view_ok() or context.is_edit_ok() or request.user.hasRole('Anonymous')) %} You are not allowed to view this page. {% endif %} {% if not (context.is_view_ok() or context.is_edit_ok()) and request.user.hasRole('Anonymous') %} Please login with your username and password. {% endif %} {% if context.is_edit_ok() %}

You may edit the contents of the {{ request.classname }} class using this form. Commas, newlines and double quotes (") must be handled delicately. You may include commas and newlines by enclosing the values in double-quotes ("). Double quotes themselves must be quoted by doubling ("").

Multilink properties have their multiple values colon (":") separated (... ,"one:two:three", ...)

Remove entries by deleting their line. Add new entries by appending them to the table - put an X in the id column.


{% endif %} {% if context.is_only_view_ok() %} {% for property in context.propnames %} {% endfor %} {% for item in context.list() %} {% if item.is_view_ok() %} {% for property in context.propnames %} {% endfor %} {% endif %} {% endfor %}
{{ property }}
{{ item[property] }}
{% endif %} {% endblock content %}