{% extends "base.html" %} {% block extra_head %} {% endblock %} {% block content %}
← All issues {% if issue.html_url %}View on Gitea{% endif %}
#{{ issue.number }}

{{ render_title(issue.title) }}

Status: {{ issue.state }}
{% if issue.is_local_author %} {% set _user = {'username': issue.author_username, 'avatar_seed': issue.author_avatar_seed} %}{% set _size = 24 %}{% set _size_class = "sm" %}{% include "_avatar_link.html" %} {% endif %} {{ issue.author_username }} · {{ local_dt(issue.created_at) }}
{% if viewer_is_admin %}
{% if issue.state == 'open' %}
{% else %}
{% endif %}
{% endif %}
{% set _type = "issue" %}{% set _uid = issue.number|string %}{% set _owner = "" %}{% set _owner_name = "" %}{% set _class = "btn btn-secondary btn-sm" %}{% include "_report_button.html" %}
{{ render_content(body) }}
{% if attachments %} {% set _attachments = attachments %}{% set _delete_base = "/issues/" ~ issue.number ~ "/attachments" %}{% include "_issue_attachments.html" %} {% endif %} {% if can_attach %}
{% include "_attachment_form.html" %}
{% endif %}

Updates & comments

{% for comment in comments %}
{% if comment.is_local_author %} {% set _user = {'username': comment.author_username, 'avatar_seed': comment.author_avatar_seed} %}{% set _size = 20 %}{% set _size_class = "sm" %}{% include "_avatar_link.html" %} {% else %} Developer reply from dev {% endif %} {{ comment.author_username }} · {{ local_dt(comment.created_at) }}
{{ render_content(comment.body) }}
{% if comment.attachments %} {% set _attachments = comment.attachments %}{% set _delete_base = "/issues/" ~ issue.number ~ "/comments/" ~ comment.id ~ "/attachments" %}{% include "_issue_attachments.html" %} {% endif %}
{% else %}

No updates yet.

{% endfor %} {% if can_comment %}
{% else %}

Log in to comment.

{% endif %}
{% endblock %}