1.1 --- a/eskp.py Tue May 20 16:23:02 2014 +0200
1.2 +++ b/eskp.py Tue May 20 16:24:06 2014 +0200
1.3 @@ -194,10 +194,19 @@
1.4 def institute():
1.5 filename = os.path.join("templates", get_locale(), "rst", "iek-7.rst")
1.6 content = get_content(filename)
1.7 - filename = os.path.join("templates", get_locale(), "rst", "iek-7_author.rst")
1.8 - author = modal_info("/author_info.html", "author", _(u"IEK-7"), filename)
1.9 + vcard_file = os.path.join("vcards", "sas.vcf")
1.10 + author = u""
1.11 + try:
1.12 + card = get_vcard(vcard_file)
1.13 + except IOError:
1.14 + card = None
1.15 + if card is not None:
1.16 + qr_image = qr_image_data(card)
1.17 + author = render_template("/author_info.html", act="author", title=_(u"IEK-7"),
1.18 + card=card, image=qr_image, contact=_(u"Contact"), exit=_(u"Close"))
1.19 +
1.20 return render_template("/iek-7.html", act="iek-7", content=content,
1.21 - author=author, contact = u"IEK-7")
1.22 + author=author, card=card, contact = u"IEK-7")
1.23
1.24
1.25 @app.route("/imprint")