Skip to content

Commit

Permalink
past events: use in filter for past events
Browse files Browse the repository at this point in the history
Fixes #92
  • Loading branch information
thomersch committed May 17, 2024
1 parent 09e7f1d commit ab42e11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
"extensions": ["ms-python.python", "ms-python.black-formatter"]
}
},
"forwardPorts": [8000, "db:5432"]
"forwardPorts": ["8000", "db:5432"]
}
2 changes: 1 addition & 1 deletion osmcal/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

{% if debug and not user.is_authenticated %}| <a href="{% url 'login-mock' %}?next={% if next %}{{ next }}{% else %}{{ request.path }}{% endif %}">Mock login</a>{% endif %}

<div style="margin-top:.5em"><a href="/events/past/">Past Events</a> | <a href="/documentation/">Documentation</a></div>
<div style="margin-top:.5em"><a href="/events/past/{% if filter.in %}?in={{ filter.in }}{% endif %}">Past Events</a> | <a href="/documentation/">Documentation</a></div>
</footer>
</body>
</html>

0 comments on commit ab42e11

Please sign in to comment.