diff --git a/freak/__init__.py b/freak/__init__.py index fbd6dc0..fcac5d5 100644 --- a/freak/__init__.py +++ b/freak/__init__.py @@ -26,7 +26,7 @@ from suou import twocolon_list, WantsContentType from .colors import color_themes, theme_classes -__version__ = '0.5.0-dev49' +__version__ = '0.5.0-dev50' APP_BASE_DIR = os.path.dirname(os.path.dirname(__file__)) diff --git a/freak/rest/__init__.py b/freak/rest/__init__.py index 8354f6c..fc1ded8 100644 --- a/freak/rest/__init__.py +++ b/freak/rest/__init__.py @@ -446,7 +446,11 @@ async def patch_settings_appearance(data: SettingsIn): @bp.get('/about/about') async def about_about(): return dict( - content=await render_template("about.md") + content=await render_template("about.md", + quart_version=quart_version, + sa_version=sa_version, + python_version=sys.version.split()[0] + ) ) @bp.get('/about/terms')