15 lines
461 B
HTML
15 lines
461 B
HTML
{% extends "base.html" %}
|
|
{% from "macros.html" import with_errors %}
|
|
|
|
{% block title %}Install {{ app_name }} {{ super() }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Install {{ app_name }}</h1>
|
|
<form method="POST" action="{{ url_for("apps.install", app_name=app_name) }}">
|
|
{% for field in form %}
|
|
{{ field.label() }} {{ with_errors(field, style='font-weight: bold') }}
|
|
{% endfor %}
|
|
<input type="submit" value="Install" />
|
|
</form>
|
|
{% endblock content %}
|