You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
280 B

{# templates/profil/show.html.twig #}
{% extends 'base.html.twig' %}
{% block title %}Profil - {{ profil.name }}{% endblock %}
{% block body %}
<h1>Profil: {{ profil.name }}</h1>
<p>ID: {{ profil.id }}</p>
<p>Description: {{ profil.description }}</p>
{% endblock %}