mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-22 10:01:45 +00:00
36 lines
888 B
HTML
36 lines
888 B
HTML
{% extends "base.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
<h3>{{ title }}</h3>
|
|
|
|
<div class="row">
|
|
<div class="col-sm-6">
|
|
<div class="list-group">
|
|
{% for access_point in access_points %}
|
|
<div class="list-group-item clearfix">
|
|
{% if access_point.ssid %}
|
|
<a display="inline-block" width="40%"
|
|
href="{% url 'networks:add_wifi' access_point.ssid access_point.interface_name %}">
|
|
{{ access_point.ssid }}
|
|
</a>
|
|
{% else %}
|
|
--
|
|
{% endif %}
|
|
<span class="btn btn-primary btn-xs pull-right">
|
|
{{ access_point.strength }}%
|
|
</span>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|