mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-29 10:10:19 +00:00
- Cosmetic styling fixes. Having doc string as suggested by Python doc string guidelines. - 'connected to the Internet' seems much more popular phrase than 'connected on the Internet' judging by web search results. - Stylize as 'Internet' for consistency although 'internet' is correct too. - Add space at the end of main radio button option text as translators seems to understand it incorrectly. See current Spanish translation. - Recommend 'DMZ' for router configuration. - Remove incorrect title casing port forwarding text. - Internationalize some strings. - Update the default value for router configuration to 'not_configured'. - Update the default value for Internet connection type to None so that nothing is selected by default. We could consider introducing a fourth option 'not_configured'. - Update the ID of first boot wizard step for Internet connectivity. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
23 lines
515 B
HTML
23 lines
515 B
HTML
{% extends "base_firstboot.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
{% include "router_configuration_content.html" %}
|
|
|
|
<form class="form" method="post">
|
|
{% csrf_token %}
|
|
|
|
{{ form|bootstrap }}
|
|
|
|
<a href='{{ first_boot_next_step }}'>{% trans "Skip this step" %}</a>
|
|
<input type="submit" class="btn btn-primary pull-right" value="{% trans "Next" %}"/>
|
|
</form>
|
|
|
|
{% endblock %}
|