12345678910111213141516171819202122 |
- {% extends 'base.html.twig' %}
- {% block body %}
- {% if cookies %}
- <h2>Cookies</h2>
- <table>
- <tr>
- <th>Name</th>
- <th>Value</th>
- </tr>
- {% for name, value in cookies %}
- <tr>
- <td>{{ name }}</td>
- <td>{{ value }}</td>
- </tr>
- {% endfor %}
- </table>
- {% endif %}
- <h2>Luck</h2>
- <p>Your lucky number is {{ number }}.</p>
- {% endblock %}
|