{% extends "base.html" %} {% block title %}Custom Ticket Fields — {{ project.name }} — Fossilrepo{% endblock %} {% block content %}

{{ project.name }}

{% include "fossil/_project_nav.html" %}

Custom Ticket Fields

Add Field
{% if fields %}
{% for field in fields %}
{{ field.label }} {{ field.get_field_type_display }} {% if field.is_required %} Required {% endif %}
Name: {{ field.name }} Order: {{ field.sort_order }} {% if field.choices %} {{ field.choices_list|length }} choice{{ field.choices_list|length|pluralize }} {% endif %}
Edit
{% csrf_token %}
{% endfor %}
{% else %}

{% if search %}No fields matching "{{ search }}".{% else %}No custom ticket fields defined.{% endif %}

{% if not search %}

Custom fields extend the Fossil ticket schema with project-specific data.

Add the first field {% endif %}
{% endif %} {% include "includes/_pagination.html" %}
{% endblock %}