diff -r 45bf3ac57e9a -r 128c9379cd29 eskp.py --- a/eskp.py Tue May 20 16:23:02 2014 +0200 +++ b/eskp.py Tue May 20 16:24:06 2014 +0200 @@ -194,10 +194,19 @@ def institute(): filename = os.path.join("templates", get_locale(), "rst", "iek-7.rst") content = get_content(filename) - filename = os.path.join("templates", get_locale(), "rst", "iek-7_author.rst") - author = modal_info("/author_info.html", "author", _(u"IEK-7"), filename) + vcard_file = os.path.join("vcards", "sas.vcf") + author = u"" + try: + card = get_vcard(vcard_file) + except IOError: + 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"), + card=card, image=qr_image, contact=_(u"Contact"), exit=_(u"Close")) + return render_template("/iek-7.html", act="iek-7", content=content, - author=author, contact = u"IEK-7") + author=author, card=card, contact = u"IEK-7") @app.route("/imprint")