{% extends "layout-full.html" %} {% block title %} {{tracker.name}} — {{ cfg("sr.ht", "site-name") }} todo {% endblock %} {% block body %}

{{ tracker.owner }}/{{ tracker.name }}

{% if tracker.description %} {{ tracker.description | md }} {% endif %} {% if TicketAccess.submit in access %} {% if current_user %}

Submit ticket

{{csrf_token()}}
{{valid.summary("title")}}
{{valid.summary("description")}}
{% if rendered_preview %}
Ticket preview

{{ title }}

{{ rendered_preview }}
{% endif %} {% elif cfg("todo.sr.ht::mail", "posting-domain") %} Register here {{icon('caret-right')}} or Log in {{icon('caret-right')}} to submit tickets, or submit via email. {% endif %} {% else %}
{% if current_user %}

You are not permitted to submit tickets for this tracker.

{% else %}

You need to log in to submit tickets.

{% endif %} {% endif %}
{% if tracker.import_in_progress %}
An import operation is currently in progress.
{% endif %} {% if TicketAccess.browse not in access and TicketAccess.submit in access %}
You do not have permission to view tickets on this tracker unless you submitted them.
{% elif TicketAccess.browse not in access and TicketAccess.submit not in access %}
You do not have permission to view tickets on this tracker.
{% endif %}
{% if search_error %}
{{ search_error }}
{% endif %}
{% if len(tickets) %}
{% for ticket in tickets %}
{{ ticket.title }} {% for label in ticket.labels %} {% if not search %} {{ label|label_badge(cls="small", terms="status:open") }} {% else %} {{ label|label_badge(cls="small", terms=search) }} {% endif %} {% endfor %}
{{ ticket.updated | date }}
{{icon("comments-o")}} {{ ticket.comment_count }} {{ "comment" if ticket.comment_count == 1 else "comments" }}
{% endfor %}
{% else %}
No tickets found for this search criteria.
{% endif %} {{pagination()}}
{% endblock %}