From f7c12ef4eb09a8a0b2509ba63bbf4ca17afbb0e7 Mon Sep 17 00:00:00 2001 From: Arno Wunderlich <arno.a.wunderlich@student.jyu.fi> Date: Fri, 17 Feb 2023 09:10:35 +0000 Subject: [PATCH] don't show "Access tokens" headings on all pages --- src/tjts5901/templates/addItem.html | 2 +- src/tjts5901/templates/listBid.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tjts5901/templates/addItem.html b/src/tjts5901/templates/addItem.html index 46734121..8a26d16e 100644 --- a/src/tjts5901/templates/addItem.html +++ b/src/tjts5901/templates/addItem.html @@ -1,7 +1,7 @@ {% extends 'base.html' %} {% block header %} -<h1>{% block title %}Access tokens{% endblock %}</h1> +<h1>{% block title %}Sell items{% endblock %}</h1> {% endblock %} {% block content %} diff --git a/src/tjts5901/templates/listBid.html b/src/tjts5901/templates/listBid.html index be83e8df..c7707647 100644 --- a/src/tjts5901/templates/listBid.html +++ b/src/tjts5901/templates/listBid.html @@ -1,7 +1,7 @@ {% extends 'base.html' %} {% block header %} - <h1>{% block title %}Access tokens{% endblock %}</h1> + <h1>{% block title %}View all items currently on auction {% endblock %}</h1> {% endblock %} {% block content %} -- GitLab