mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-07-01 11:31:28 +00:00
Closes: #322. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Veiko Aasa <veiko17@disroot.org>
22 lines
431 B
HTML
22 lines
431 B
HTML
{% extends "connections_edit.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
<h3>{{ title }}</h3>
|
|
|
|
<form class="form form-connection-create" method="post">
|
|
{% csrf_token %}
|
|
|
|
{% include "connections_fields.html" %}
|
|
|
|
<input type="submit" class="btn btn-primary"
|
|
value="{% trans "Create Connection" %}"/>
|
|
</form>
|
|
|
|
{% endblock %}
|