{% extends "base.html" %} {% block comments %} {% endblock %} {% block title %}About App Framework{% endblock %} {% block header_row %}

About Application Framework

{% endblock %} {% block content %}
{% if sys_info %}
{% for k, v in sys_info.items %} {% endfor %}
{{ k }} {{ v }}
{% endif %}

Installed SteelScript Packages

{% for title, data in dicts.items %} {% if 'packages' in title or 'REST' in title %}
{{ title }}
{% else %}

{{ title }}

{% endif %}
{% if data %} {% for k, v in data.items %} {% endfor %} {% else %} {% endif %}
{{ k }} {{ v }}
None
{% endfor %} {% for title, data in lists.items %}

{{ title }}

{% for v in data %} {% endfor %}
{{ v }}
{% endfor %}
{% endblock %}