mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-29 10:10:19 +00:00
See #1841 for discussion on why Turbolinks needs to be removed. Closes: #1841. Closes: #1804. Tests performed: - There are no more references to 'turbolinks' in source code other than .po(t) files and the manual. - When loading a page, turbolinks.js is no longer loaded. - The following links don't have data-turbolinks attribute and work well when clicked.a - Gitweb repository links - Download manual links (en, es) - Ikiwiki wiki links - Sharing app web share links - TT-RSS mobile app link - 'Launch web client' button - 'Launch' button in web section of clients table - Active and regular front page shortcut - Roundcube does not have a link to /roundcube in description. - turblinks not present in /static/jslicense.html . LibreJs accepts all scripts. Reported-by: Veiko Aasa <veiko17@disroot.org> Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Tested-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Veiko Aasa <veiko17@disroot.org>
49 lines
1.4 KiB
HTML
49 lines
1.4 KiB
HTML
{% extends "app.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
|
|
{% block configuration %}
|
|
{{ block.super }}
|
|
|
|
<h3>{% trans "Manage Wikis and Blogs" %}</h3>
|
|
|
|
<div class="btn-toolbar">
|
|
<a href="{% url 'ikiwiki:create' %}" class="btn btn-default"
|
|
role="button" title="{% trans 'Create Wiki or Blog' %}">
|
|
<span class="fa fa-plus" aria-hidden="true"></span>
|
|
{% trans 'Create Wiki or Blog' %}
|
|
</a>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-sm-6">
|
|
{% if not sites %}
|
|
<p>{% trans "No wikis or blogs available." %}</p>
|
|
{% else %}
|
|
<div class="list-group">
|
|
{% for site in sites %}
|
|
<div class="list-group-item clearfix">
|
|
<a href="{% url 'ikiwiki:delete' site.0 %}"
|
|
class="btn btn-default btn-sm pull-right"
|
|
role="button"
|
|
title="{% blocktrans with site=site.1 %}Delete site {{ site }}{% endblocktrans %}">
|
|
<span class="fa fa-trash-o"
|
|
aria-hidden="true"></span>
|
|
</a>
|
|
|
|
<a class="wiki-label" href="/ikiwiki/{{ site.0 }}"
|
|
title="{% blocktrans with site=site.1 %}Go to site {{ site }}{% endblocktrans %}">
|
|
{{ site.1 }}
|
|
</a>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|