{% extends "base.html" %} {% block title %}Oozappa - Environments{% endblock %} {% block headline %}Environments{% endblock %} {% block body %}
{% for en in environment_list %} {% endfor %}
EnvironmentExecute Path
{{ en.name }} {{ en.execute_path }}

Add new Environment

{% if form.errors %}
{% endif %}
environment information
    {{ form.csrf_token }}
  • {{ form.name(size=10, class_='wide text input') }} : {{ form.name.label(class_='inline') }}
  • {{ form.sort_order(size=4, class_='wide text input') }} : {{ form.sort_order.label(class_='inline') }}
  • {{ form.execute_path(size=20, class_='wide text input') }} : {{ form.execute_path.label(class_='inline') }}
{% endblock %}