diff --git a/app/routes.py b/app/routes.py index c868a4a..135c6b8 100644 --- a/app/routes.py +++ b/app/routes.py @@ -145,7 +145,7 @@ def defconfigs(): defconfigs= OrderedDict(sorted(data['defconfigs'].items(), key=lambda t: t[0])) - title = '{} defconfigs'.format(len(data['defconfigs'])) + title = 'Total amount of defconfigs: {}'.format(len(defconfigs)) return render_template('defconfigs.html', title=title, diff --git a/app/templates/defconfigs.html b/app/templates/defconfigs.html index 161d3f1..7208b31 100644 --- a/app/templates/defconfigs.html +++ b/app/templates/defconfigs.html @@ -3,6 +3,9 @@ {% block content %}