]> Raphaël G. Git Repositories - airbundle/commitdiff
Add location.view, session.index and user.view twig templates
authorRaphaël Gertz <git@rapsys.eu>
Mon, 19 Oct 2020 07:43:24 +0000 (09:43 +0200)
committerRaphaël Gertz <git@rapsys.eu>
Mon, 19 Oct 2020 07:43:24 +0000 (09:43 +0200)
Resources/views/location/view.html.twig [new file with mode: 0644]
Resources/views/session/index.html.twig [new file with mode: 0644]
Resources/views/user/view.html.twig [new file with mode: 0644]

diff --git a/Resources/views/location/view.html.twig b/Resources/views/location/view.html.twig
new file mode 100644 (file)
index 0000000..f07553c
--- /dev/null
@@ -0,0 +1,36 @@
+{% extends '@RapsysAir/body.html.twig' %}
+{% block content %}
+<section id="location">
+       <h2><a href="{{ path('rapsys_air_location_view', {'id': id}) }}">{{ section }}</a></h2>
+       <section class="panel">
+               {% if calendar is defined and calendar %}
+                       <table class="grid">
+                               <tbody>
+                                       <tr>
+                                               {% for date, day in calendar %}
+                                                       <td 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>
+                                                                                       </li>
+                                                                               {% endfor %}
+                                                                       </ul>
+                                                               {% endif %}
+                                                       </td>
+                                                       {% if loop.index % 7 == 0 and not loop.last %}
+                                                               </tr>
+                                                               <tr>
+                                                       {% endif %}
+                                               {% endfor %}
+                                       </tr>
+                               </tbody>
+                       </table>
+               {% endif %}
+               {{ include('@RapsysAir/form/_toolbox.html.twig') }}
+       </section>
+       {# dump(calendar) #}
+</section>
+{% endblock %}
diff --git a/Resources/views/session/index.html.twig b/Resources/views/session/index.html.twig
new file mode 100644 (file)
index 0000000..58b5cb5
--- /dev/null
@@ -0,0 +1,52 @@
+{% extends '@RapsysAir/body.html.twig' %}
+{% block content %}
+<section id="session">
+       <h2><a href="{{ path('rapsys_air_session') }}">{{ section }}</a></h2>
+       <section class="panel">
+               {% if calendar is defined and calendar %}
+                       <table class="grid">
+                               <tbody>
+                                       <tr>
+                                               {% for date, day in calendar %}
+                                                       <td 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>
+                                                                                       </li>
+                                                                               {% endfor %}
+                                                                       </ul>
+                                                               {% endif %}
+                                                       </td>
+                                                       {% if loop.index % 7 == 0 and not loop.last %}
+                                                               </tr>
+                                                               <tr>
+                                                       {% endif %}
+                                               {% endfor %}
+                                       </tr>
+                               </tbody>
+                       </table>
+               {% endif %}
+               {{ include('@RapsysAir/form/_toolbox.html.twig') }}
+       </section>
+       <section class="panel">
+               {% if locations is defined and locations %}
+                       <table class="grid">
+                               <tbody>
+                                       <tr>
+                                               {% for id, title in locations %}
+                                                       <td class="cell third"><a href="{{ path('rapsys_air_location_view', {'id': id}) }}">{{ title }}</a></td>
+                                                               {% if loop.index % 7 == 0 and not loop.last %}
+                                                                       </tr>
+                                                                       <tr>
+                                                               {% endif %}
+                                               {% endfor %}
+                                       </tr>
+                               </tbody>
+                       </table>
+               {% endif %}
+       </section>
+</section>
+{% endblock %}
diff --git a/Resources/views/user/view.html.twig b/Resources/views/user/view.html.twig
new file mode 100644 (file)
index 0000000..94585cc
--- /dev/null
@@ -0,0 +1,35 @@
+{% extends '@RapsysAir/body.html.twig' %}
+{% block content %}
+<section id="user">
+       <h2><a href="{{ path('rapsys_air_user_view', {'id': id}) }}">{{ section }}</a></h2>
+       <section class="panel">
+               {% if calendar is defined and calendar %}
+                       <table class="grid">
+                               <tbody>
+                                       <tr>
+                                               {% for date, day in calendar %}
+                                                       <td 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>
+                                                                                       </li>
+                                                                               {% endfor %}
+                                                                       </ul>
+                                                               {% endif %}
+                                                       </td>
+                                                       {% if loop.index % 7 == 0 and not loop.last %}
+                                                               </tr>
+                                                               <tr>
+                                                       {% endif %}
+                                               {% endfor %}
+                                       </tr>
+                               </tbody>
+                       </table>
+               {% endif %}
+               {{ include('@RapsysAir/form/_toolbox.html.twig') }}
+       </section>
+</section>
+{% endblock %}