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

Commit

Permalink
Misc (#369)
Browse files Browse the repository at this point in the history
* Rename LAN menu to Tickets in navbar and remove tickets button on LAN page

* Prep changelog for release
  • Loading branch information
HON95 authored Aug 3, 2022
1 parent ccd41e3 commit 3f45215
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 15 deletions.
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

0 comments on commit 3f45215

Please sign in to comment.