diff -r e643bce8906c -r bc114089a220 eskp.py --- a/eskp.py Wed Jan 29 09:01:31 2025 +0100 +++ b/eskp.py Wed Jan 29 16:54:42 2025 +0100 @@ -76,7 +76,7 @@ ('/ozoneloss/uvi', _(u'uv increase')), ('/ozoneloss/decadal', _(u'decadal')))), ('/eskp', _(u'ESKP'), (None, None)), - ('/iek-7', _(u'IEK-7'), (None, None)) + ('/ice-4', _(u'ICE-4'), (None, None)) ] return menue @@ -372,9 +372,9 @@ -@app.route("/iek-7") +@app.route("/ice-4") def institute(): - filename = os.path.join("templates", get_locale(), "rst", "iek-7.rst") + filename = os.path.join("templates", get_locale(), "rst", "ice-4.rst") content = get_content(filename) vcard_file = os.path.join("vcards", "sas.vcf") author = u"" @@ -384,11 +384,11 @@ card = None if card is not None: qr_image = qr_image_data(card) - author = render_template("/author_info.html", act="author", title=_(u"IEK-7"), + author = render_template("/author_info.html", act="author", title=_(u"ICE-4"), card=card, image=qr_image, contact=_(u"Contact"), exit=_(u"Close")) - return render_template("/iek-7.html", act="iek-7", content=content, - author=author, card=card, contact=u"IEK-7") + return render_template("/ice-4.html", act="ice-4", content=content, + author=author, card=card, contact=u"ICE-4") @app.route("/imprint")