FreedomBox/plinth/modules/ikiwiki/templates/ikiwiki_create.html
Sunil Mohan Adapa ac5683cf4d
ikiwiki: tests: functional: Find forms more accurately
Tests:

- Run ikiwiki functional tests

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
2022-09-03 17:28:36 -04:00

22 lines
426 B
HTML

{% extends "base.html" %}
{% comment %}
# SPDX-License-Identifier: AGPL-3.0-or-later
{% endcomment %}
{% load bootstrap %}
{% load i18n %}
{% block content %}
<h3>{% trans "Create Wiki or Blog" %}</h3>
<form class="form form-create" method="post">
{% csrf_token %}
{{ form|bootstrap }}
<input type="submit" class="btn btn-primary"
value="{% trans "Update setup" %}"/>
</form>
{% endblock %}