Skip to content

Commit

Permalink
fix css for external event list
Browse files Browse the repository at this point in the history
  • Loading branch information
jeriox committed Aug 8, 2023
1 parent 9485687 commit 610a00d
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,15 @@

{% block content %}
<h1>{% translate "External events" %}</h1>
<ul class="list-group mb-3">
{% for event in events %}
<div class="list-group-item list-group-item-action p-0 d-flex flex-row">
<li class="list-group-item list-group-item-action p-0 d-flex flex-row">
<div class="m-0 py-2 d-flex flex-column flex-lg-row-reverse justify-content-around flex-grow-0">
<div class="ps-lg-2 d-flex flex-row flex-lg-column justify-content-center event-list-status-icon">
<span class="text-muted far fa-user ps-2"></span>
</div>
</div>
<a class="list-group-item-action py-2 event-list-item-link"
<a class="w-100 text-reset py-2 event-list-item-link"
href="{{ event.signup_url }}?referrer={{ SITE_URL }}">
<div class="grid-wrapper m-0 py-0 ps-2 pe-3">
<div class="grid-title">
Expand Down Expand Up @@ -58,12 +59,13 @@ <h5 class="mb-0 text-break d-inline-block">
</div>
</div>
</a>
</div>
</li>
{% empty %}
<div class="mb-3">
<h5 class="mt-5 text-center">
{% translate "No results." %}
</h5>
</div>
{% endfor %}
</ul>
{% endblock %}

0 comments on commit 610a00d

Please sign in to comment.