Skip to content
This repository has been archived by the owner on Aug 18, 2024. It is now read-only.

Misc #369

Merged
merged 2 commits into from
Aug 3, 2022
Merged

Misc #369

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 16 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

### Changed

### Deprecated

### Removed

### Fixed

### Security


## [v1.10.0] - 2022-08-03

### Added

- Added marketing email opt-in for users on sign-up and profile pages.
- Added payment logging.
- Added optional colored borders for ticket on the ticket page.
Expand All @@ -23,18 +38,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Made age check fail for people over 150 years.
- Made frontpage redirect to LAN instead of showing news, and replace LAN button on navbar with news button.

### Deprecated

### Removed

### Fixed

- Fixed graceful shutdown for production mode.
- Fixed navbar overflow for medium screen sizes.

### Security

- Make Django management tasks in the Docker entrypoint run as the app user instead of root.
- Made Django management tasks in the Docker entrypoint run as the app user instead of root.


## [v1.9.1] - 2022-05-01
Expand Down
9 changes: 0 additions & 9 deletions templates/lan/details.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,4 @@ <h1 class="page-header">{{ lan }}</h1>
</div>
</div>

<div class="row">
<div class="col-md-9">
<a href="{% url 'lan_tickets' lan_id=lan.id %}" class="btn btn-primary">
<span class="glyphicon glyphicon-film" aria-hidden="true"></span>
{% trans "View tickets" %}
</a>
</div>
</div>

{% endblock content %}
2 changes: 1 addition & 1 deletion templates/navigation.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<ul id="navbar" class="nav navbar-nav">
<li class="navbar-item"><a href="{% url 'news_main' %}">{% trans "News" %}</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">{% trans "LAN" %}<span class="caret"></span></a>
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">{% trans "Tickets" %}<span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li class="navbar-item"><a href="{% url 'lan_tickets_home' %}">{% trans "Tickets" %}</a></li>
<li class="navbar-item"><a href="{% url 'seatings' %}">{% trans "Seating" %}</a></li>
Expand Down