Skip to content

Commit

Permalink
Changed changlog route
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderWatzinger committed Apr 11, 2020
1 parent c3e772d commit 40dbec6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion openatlas/templates/index/changelog.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends "layout.html" %}
{% block title_name %} - {{ _('import')|uc_first }}{% endblock %}
{% block title_name %} - {{ _('changelog')|uc_first }}{% endblock %}
{% block breadcrumb %}
{{ [[_('overview'), 'index'], _('changelog')]|crumb }}
{% endblock %}
Expand Down
2 changes: 1 addition & 1 deletion openatlas/views/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def unprocessable_entity(e: Exception) -> Tuple[str, int]:
return render_template('422.html', e=e), 422


@app.route('/overview/changelog')
@app.route('/changelog')
def index_changelog() -> str:
return render_template('index/changelog.html', versions=Changelog.versions)

Expand Down

0 comments on commit 40dbec6

Please sign in to comment.