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.
12 lines
463 B
12 lines
463 B
11 years ago
|
{% extends '::main_template.html.twig' %}
|
||
|
{% block title %} - Csoportok{% endblock title %}
|
||
|
{% block content %}
|
||
|
<h3>Jelentkezés</h3>
|
||
|
{% if isRequested %}
|
||
|
Már jelentkeztél ebbe a csoportba ({{ group.name }}), de {{ group.leader.displayName }} még nem hagyta jóvá a belépésedet.
|
||
|
{% endif %}
|
||
|
{% if needApproval %}
|
||
|
A csoportba való jelentkezésedről a csoport vezetőjét ({{ group.leader.displayName }}) értesítettük.
|
||
|
{% endif %}
|
||
|
{% endblock content %}
|