16 lines
443 B
HTML
16 lines
443 B
HTML
{% 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 %}
|