forked from zer.ooo/web
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
391 B
Twig
16 lines
391 B
Twig
{% extends "panel.html.twig" %}
|
|
|
|
{% block panel_contents %}
|
|
<h1 class="title">{{ user.getUsername() }}</h1>
|
|
<div class="form">
|
|
<div class="row">
|
|
<label>Email address</label>
|
|
<kbd>{{ user.getPlainEmailAddress() }}</kbd>
|
|
</div>
|
|
<div class="row">
|
|
<label>Amount certificates</label>
|
|
<kbd>{{ user.getMaxKeys() }}</kbd>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|