Skip to content

Commit

Permalink
Relabel the version matrix page to just "Versions"
Browse files Browse the repository at this point in the history
  • Loading branch information
Xyene committed Jun 12, 2023
1 parent 146d9ea commit ddc624b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion judge/views/status.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def version_matrix(request):

languages = sorted(languages, key=lambda lang: version.parse(lang.name))
return render(request, 'status/versions.html', {
'title': _('Version matrix'),
'title': _('Version'),
'judges': sorted(matrix.keys()),
'languages': languages,
'matrix': matrix,
Expand Down
2 changes: 1 addition & 1 deletion templates/status/status-tabs.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
{% block tabs %}
{{ make_tab('judges', 'fa-server', url('status_all'), _('Judges')) }}
{{ make_tab('runtimes', 'fa-code', url('runtime_list'), _('Runtimes')) }}
{{ make_tab('matrix', 'fa-table', url('version_matrix'), _('Version Matrix')) }}
{{ make_tab('matrix', 'fa-table', url('version_matrix'), _('Versions')) }}
{% endblock %}

0 comments on commit ddc624b

Please sign in to comment.