mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-04 08:13:38 +00:00
- Remove unused template tag loading. - Fix white spacing. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Veiko Aasa <veiko17@disroot.org>
31 lines
774 B
HTML
31 lines
774 B
HTML
{% extends "base.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
<h3>{% trans 'Add custom PageKite service' %}</h3>
|
|
|
|
<div class="alert alert-warning" role="alert">
|
|
{% blocktrans trimmed %}
|
|
<b>Warning:</b><br>Your PageKite frontend server may not support
|
|
all the protocol/port combinations that you are able to define
|
|
here. For example, HTTPS on ports other than 443 is known to
|
|
cause problems.
|
|
{% endblocktrans %}
|
|
</div>
|
|
|
|
<form class="form" method="post">
|
|
{% csrf_token %}
|
|
|
|
{{ form|bootstrap }}
|
|
|
|
<input type="submit" class="btn btn-primary"
|
|
value="{% trans "Submit" %}"/>
|
|
</form>
|
|
{% endblock %}
|