]> Raphaƫl G. Git Repositories - airbundle/blobdiff - Resources/views/user/index.html.twig
New header layout
[airbundle] / Resources / views / user / index.html.twig
index 2e3b1bdca310d8ef68149f62d8f6c31b3d786282..ab1bcba7e80cd5c0a1710f3a9e57951d31647640 100644 (file)
@@ -1,43 +1,41 @@
 {% extends '@RapsysAir/body.html.twig' %}
 {% block content %}
-       <article id="dashboard">
+       <article>
                <header>
-                       <h2><a href="{{ path('rapsys_air_user') }}">{{ section }}</a></h2>
-                       <p>{{ description }}</p>
+                       <h2>{{ description }}</h2>
                </header>
                <div class="panel">
-                       {% if users is defined and users %}
-                               <div class="grid two">
-                                       {% for group, list in users %}
+                       {% if groups is defined and groups %}
+                               <div class="grid{% if groups|length > 2 %} three{% elseif groups|length > 1 %} two{% endif %}">
+                                       {% for group, users in groups %}
                                                <article class="cell">
-                                                       <h3>{{ group }}</h3>
+                                                       <header>
+                                                               <h3>{{ group }}</h3>
+                                                       </header>
                                                        <ul>
-                                                               {% for id, user in list %}
-                                                                       <li><a href="{{ path('rapsys_air_user_view', {'id': id}) }}">{{ user }}</a></li>
+                                                               {% for id, user in users %}
+                                                                       <li><a href="{{ user.link }}" title="{% if user.forename %}{{ user.forename }} {% endif %}{% if user.surname %}{{ user.surname }} {% endif %}{% if user.pseudonym %}({{ user.pseudonym }}) {% endif %}&lt;{{ user.mail }}&gt;">{{ user.mail }}</a><a href="{{ user.edit }}">{% trans %}Modify{% endtrans %}</a></li>
                                                                {% endfor %}
-                                                       </ul>
                                                </article>
                                        {% endfor %}
-                                       {#{% for date, day in organizers %}
-                                               <article class="{{ ['cell', 'seventh']|merge(day.class)|join(' ') }}">
-                                                       <h3>{{ day.title }}</h3>
-                                                       {% if day.sessions is not empty %}
-                                                               <ul>
-                                                                       {% for session in day.sessions %}
-                                                                               <li class="{{ ['session']|merge(session.class)|join(' ') }}">
-                                                                                       <a href="{{ path('rapsys_air_session_view', {'id': session.id}) }}" title="{{ session.applications|join('\n') }}">{{ session.title }}</a>
-                                                                                       <span>
-                                                                                               {% if session.weather is defined and session.weather %}<span title="{{ session.weathertitle }}">{{ session.weather }}</span>{% endif %}
-                                                                                               <span title="{{ session.slottitle }}">{{ session.slot }}</span>
-                                                                                       </span>
-                                                                               </li>
+                               </div>
+                       {% elseif users is defined and users %}
+                               <div class="grid{% if users|length > 3 %} four{% elseif users|length > 2 %} three{% elseif users|length > 1 %} two{% endif %}">
+                                       {% for id, user in users %}
+                                               <article class="cell">
+                                                       <header>
+                                                               <h3><a href="{{ user.link }}" title="{{ '%pseudonym% calendar'|trans({'%pseudonym%': user.pseudonym}) }}">{{ user.pseudonym }}</a></h3>
+                                                       </header>
+                                                       {% for dname, dinfos in user.dances %}
+                                                               <dl>
+                                                                       <dt><a href="{{ dinfos.link }}">{{ dname }}</a></dt>
+                                                                       {% for dtype, dlink in dinfos.types %}
+                                                                               <dd><a href="{{ dlink }}">{{ dtype }}</a><dd>
                                                                        {% endfor %}
-                                                               </ul>
-                                                       {% else %}
-                                                               &nbsp;
-                                                       {% endif %}
+                                                               </dl>
+                                                       {% endfor %}
                                                </article>
-                                       {% endfor %}#}
+                                       {% endfor %}
                                </div>
                        {% endif %}
                        {{ include('@RapsysAir/form/_toolbox.html.twig') }}