Skip to content
Snippets Groups Projects
Commit 9c8ff401 authored by Roang's avatar Roang
Browse files

Fix T001 djLint rule

Variables should be wrapped in a whitespace.
parent ae1e60a8
Branches
Tags release/forms/4.3.10
No related merge requests found
......@@ -203,7 +203,7 @@
<footer class="mt-auto d-flex p-2">
{% if event.track_name %}
<p>
<small class="d-block {{ "text-tertiary" if event.kind == "official" else "text-primary"}}">
<small class="d-block {{ 'text-tertiary' if event.kind == 'official' else 'text-primary' }}">
{{ _("%(kind)s Event on Track", kind="Official" if event.kind == "official" else "") }}
</small>
<span class="fs-medium fw-bold">{{ event.track_name }}</span>
......@@ -279,7 +279,7 @@
<footer class="mt-auto d-md-flex align-items-center">
{% if room.current_event.track_name %}
<p class="mb-2 mb-md-0 fs-medium">
<small class="d-block {{ "text-tertiary" if room.current_event.kind == "official" else "text-primary"}}">
<small class="d-block {{ 'text-tertiary' if room.current_event.kind == 'official' else 'text-primary' }}">
{{ _("%(kind)s Event on Track", kind="Official" if room.current_event.kind == "official" else "") }}
</small>
{{ room.current_event.track_name }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment