Skip to content
Snippets Groups Projects
Commit 1efb945f authored by Lukas Ruge's avatar Lukas Ruge
Browse files

optimization

parent 7438d39d
No related branches found
No related tags found
No related merge requests found
Pipeline #32730 passed
......@@ -23,7 +23,7 @@
{%- if m_start_plus < nowunix and m_start > nowunix and show_m > 1 -%}
<div id="maintenance_soon_mobile" style="margin-top: 5px;">
<b>🔧</b>
{%- assign show_m = 0 -%}<p id="nextmaintenance_mobile"> {{ m.eventdate | date: "%d.%m.%Y %H:%M" }}: {{m.title}} ({% for component in site.inventory -%} {% if m.components contains component.uid -%}{{component.name}}{% endif -%}{% endfor -%})</p>
{%- assign show_m = 0 -%}<p id="nextmaintenance_mobile"> {{ m.eventdate | date: "%d.%m.%Y %H:%M" }}: {{m.title}} ({% assign components = site.inventory | where_exp: "inv", "m.components contains inv.uid" -%}{% for component in components -%} {% if m.components contains component.uid -%}{{component.name}}{% unless forloop.last %}, {% endunless %}{% endif -%}{% endfor -%})</p>
</div>
{% endif -%}
{% endfor -%}
......@@ -20,7 +20,7 @@
{%- if m_start_plus < nowunix and m_start > nowunix and show_m > 1 -%}
<div id="maintenance_soon" style="margin-top: 5px;">
<b>🔧</b>
{%- assign show_m = 0 -%}<p id="nextmaintenance"> {{ m.eventdate | date: "%d.%m.%Y %H:%M" }}: {{m.title}} ({% for component in site.inventory -%} {% if m.components contains component.uid -%}{{component.name}}{% endif -%}{% endfor -%})</p>
{%- assign show_m = 0 -%}<p id="nextmaintenance"> {{ m.eventdate | date: "%d.%m.%Y %H:%M" }}: {{m.title}} ({% assign components = site.inventory | where_exp: "inv", "m.components contains inv.uid" -%}{% for component in components -%} {% if m.components contains component.uid -%}{{component.name}}{% unless forloop.last %}, {% endunless %}{% endif -%}{% endfor -%})</p>
</div>
{% endif -%}
{% endfor -%}
......
......@@ -7,6 +7,7 @@ persons:
uid: 66d0ea8f-3505-4bf6-aa28-ed937fa5be41
ticket_id:
event: 7b81b303-ef95-4325-91fd-09d0a13ecccf
slides: "https://wiki.chaotikum.org/_media/projekte:vortraege:nookpraesi5min.pdf"
frontpage: true
conferences:
- nbsp
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment