Merge branch 'master' of ssh://git.autonomic.zone:2222/autonomic-cooperative/magic-app

This commit is contained in:
c v t
2020-07-05 14:34:03 +02:00
38 changed files with 1369 additions and 114 deletions

View File

@ -0,0 +1,15 @@
{% extends "base.html" %}
{% from "second/macros.html" import with_errors %}
{% block title %}Install {{ app_name }} {{ super() }}{% endblock %}
{% block content %}
<p>Install {{ app_name }}</p>
<form method="POST" action="/deploy/{{ app_name }}">
{% for field in form %}
{{ field.label() }}
{{ with_errors(field, style='font-weight: bold') }}
{% endfor %}
<input type="submit" value="Deploy" />
</form>
{% endblock content %}