Janik Haag
9e0b8e5699
This is the initial code dump from Janik. I obtained express permission to license it under MIT, see the next commit.
21 lines
370 B
HTML
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 %}
|