1.1 --- a/eskp.py Fri May 16 10:18:42 2014 +0200
1.2 +++ b/eskp.py Fri May 16 11:10:42 2014 +0200
1.3 @@ -61,9 +61,11 @@
1.4 app.jinja_env.globals.update(get_o3lossclams_dates=get_o3lossclams_dates)
1.5 app.jinja_env.globals.update(get_vpsc_dates=get_vpsc_dates)
1.6
1.7 -def author_info(name, filename):
1.8 +
1.9 +def modal_info(template, act, title, filename):
1.10 content = get_content(filename)
1.11 - html = render_template("/author_info.html", act="author", title=name, content=content, exit=_(u"Close"))
1.12 + print template
1.13 + html = render_template(template, act=act, title=title, content=content, exit=_(u"Close"))
1.14 return html
1.15
1.16
1.17 @@ -126,9 +128,11 @@
1.18 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
1.19 content = get_content(filename)
1.20 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_author.rst")
1.21 - author = author_info(_(u"Ozoneloss"), filename)
1.22 + author = modal_info("/author_info.html", "author", _(u"Ozoneloss"), filename)
1.23 + filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_publications.rst")
1.24 + publications = modal_info("/publications_info.html", "publications", _(u"Ozoneloss"), filename)
1.25 return render_template("/ozoneloss.html", act="ozoneloss", content=content,
1.26 - author=author, contact = u"Dr. Jens-Uwe Grooß", publications=u"Publications" )
1.27 + author=author, contact = u"Dr. Jens-Uwe Grooß", publications=publications )
1.28
1.29 @app.route("/ozoneloss/clams")
1.30 def ozoneloss_clams():
1.31 @@ -147,7 +151,7 @@
1.32 filename = os.path.join("templates", get_locale(), "rst", "iek-7.rst")
1.33 content = get_content(filename)
1.34 filename = os.path.join("templates", get_locale(), "rst", "iek-7_author.rst")
1.35 - author = author_info(_(u"IEK-7"), filename)
1.36 + author = modal_info("/author_info.html", "author", _(u"IEK-7"), filename)
1.37 return render_template("/iek-7.html", act="iek-7", content=content,
1.38 author=author, contact = u"Sandra Stein")
1.39