We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e40b93 commit 723625cCopy full SHA for 723625c
naucse/templates/run_list.html
@@ -27,7 +27,7 @@ <h4>
27
<h1>Aktuální kurzy</h1>
28
{% for year, run_year in run_years.items() %}
29
{% for run in run_year.runs.values() | sort(attribute='start_date', reverse=True)
30
- if run.end_date > today %}
+ if run.end_date >= today %}
31
{{ show_run(run) }}
32
{% endfor %}
33
@@ -36,7 +36,7 @@ <h1>Proběhlé kurzy</h1>
36
37
<h2>{{ year }}</h2>
38
39
- if run.end_date <= today %}
+ if run.end_date < today %}
40
41
42
0 commit comments