{% extends 'base.html' %}
{% block title %}Runtime & Build Information{% endblock %}
{% block styles %}
{{super()}}
{% endblock %}
{% block content %}
Runtime
{{ appname }} version |
{{ runtime.version }} |
Python version |
{{ runtime.python_version }} |
{% if runtime['HOSTNAME'] %}
Hostname |
{{ runtime['HOSTNAME'] }} |
{% endif %}
Start timestamp |
{{ runtime['start_timestamp'] }} |
Python modules
module |
version |
{% for x in runtime.python_modules %}
{{ x }} |
{{ runtime.python_modules[x] }} |
{% endfor %}
{% endblock %}