15 lines
350 B
Twig
15 lines
350 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Conference Guestbook{% endblock %}
|
|
|
|
{% block body %}
|
|
<h2>Give your feedback!</h2>
|
|
|
|
{% for conference in conferences %}
|
|
<h4>{{ conference }}</h4>
|
|
<p>
|
|
<a href="{{ path('conference', { slug: conference.slug }) }}">View</a>
|
|
</p>
|
|
{% endfor %}
|
|
{% endblock %}
|