issue-tracker/forkosissuetracker/issuetracker_app/templates/index.html
Janik Haag 9e0b8e5699 Initial code dump
This is the initial code dump from Janik.
I obtained express permission to license it under MIT, see the next
commit.
2024-10-20 16:20:48 +02:00

21 lines
370 B
HTML

{% extends "base.html" %}
{% block content %}
{% if object_list %}
<h3>All our issues</h3>
{% endif %}
<ul>
{% for issue in object_list %}
<li>
<div
role="button"
onclick="location.href='{% url "issue-detail" issue.id %}'">
{{ issue.title }} | {{ issue.author }}
</div>
</li>
{% empty %}
<h4>You have no lists!</h4>
{% endfor %}
</ul>
{% endblock %}