From eb016bc686af836b0e2a77e9c5396a9b8b0def56 Mon Sep 17 00:00:00 2001 From: Nektarios Katakis Date: Sun, 16 Feb 2020 00:14:37 +0000 Subject: [PATCH] networks: All first step wizard form for internet connection type Signed-off-by: Nektarios Katakis [sunil: Use SPDX license identifier] Signed-off-by: Sunil Mohan Adapa Reviewed-by: Sunil Mohan Adapa --- .../internet_connectivity_firstboot.html | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 plinth/modules/networks/templates/internet_connectivity_firstboot.html diff --git a/plinth/modules/networks/templates/internet_connectivity_firstboot.html b/plinth/modules/networks/templates/internet_connectivity_firstboot.html new file mode 100644 index 000000000..64e7c0c3f --- /dev/null +++ b/plinth/modules/networks/templates/internet_connectivity_firstboot.html @@ -0,0 +1,23 @@ +{% extends "base_firstboot.html" %} +{% comment %} +# SPDX-License-Identifier: AGPL-3.0-or-later +{% endcomment %} + +{% load bootstrap %} +{% load i18n %} +{% load static %} + +{% block content %} + {% include "internet_connectivity_content.html" %} + +
+ {% csrf_token %} + + {{ form|bootstrap }} + + {% trans "skip this step" %} + +
+ +{% endblock %}