Merge branch 'master' of ssh://git.autonomic.zone:2222/autonomic-cooperative/magic-app
This commit is contained in:
15
spikes/templates/second/install.html
Normal file
15
spikes/templates/second/install.html
Normal 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 %}
|
Reference in New Issue
Block a user