{% extends 'base.html' %} {% block title %}Runtime & Build Information{% endblock %} {% block styles %} {{super()}} {% endblock %} {% block content %}

Runtime

{% if runtime['HOSTNAME'] %} {% endif %}
{{ appname }} version {{ runtime.version }}
Python version {{ runtime.python_version }}
Hostname {{ runtime['HOSTNAME'] }}
Start timestamp {{ runtime['start_timestamp'] }}

Python modules

{% for x in runtime.python_modules %} {% endfor %}
module version
{{ x }} {{ runtime.python_modules[x] }}
{% endblock %}