scratch-site/scratch_show/templates/scratch_show/event_detail.html
Antoine Martin c924918387 Functional
2022-05-13 07:34:08 +02:00

16 lines
362 B
HTML

{% extends 'scratch_show/base.html' %}
{% block content %}
<h1>{{ event.name }}, le {{ event.date|date }}</h1>
<ul>
{% for project in projects %}
<li><a href="{% url 'scratch_show:project-detail' project.pk %}">{{ project.name }}</a> par {{ project.author_name }}</li>
{% empty %}
<li>Aucun projet pour le moment !</li>
{% endfor %}
</ul>
{% endblock %}