Conference URLs now use slugs instead of integer id

This commit is contained in:
2024-07-28 01:31:09 -04:00
parent e3bffbc418
commit 31f65e2489
8 changed files with 125 additions and 5 deletions

View File

@@ -8,7 +8,7 @@
{% for conference in conferences %}
<h4>{{ conference }}</h4>
<p>
<a href="{{ path('conference', { id: conference.id }) }}">View</a>
<a href="{{ path('conference', { slug: conference.slug }) }}">View</a>
</p>
{% endfor %}
{% endblock %}