mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-29 10:10:19 +00:00
TiddlyWiki uses almost the same Apache configuration as Feather Wiki, with one difference - disabling gzip for the `HEAD` request. The FreedomBox app for TiddlyWiki is identical to Feather Wiki in every other aspect. - Proxy download through freedombox.org. This serves two purposes: 1. Upstream's website cannot track the IP addresses of FreedomBox users. 2. We can update the versions of the empty quine files without making code changes in FreedomBox. [sunil] - Update description to correct the list of users who can access the app. - Update logo to adhere to the logo guidelines. - Minor styling fix. - Update the copyright on the logo based on information from upstream git repository. Signed-off-by: Joseph Nuthalapati <njoseph@riseup.net> Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
61 lines
2.0 KiB
HTML
61 lines
2.0 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" %}</h3>
|
|
|
|
<div class="btn-toolbar">
|
|
<a href="{% url 'tiddlywiki:create' %}" class="btn btn-default"
|
|
role="button" title="{% trans 'Create Wiki' %}">
|
|
<span class="fa fa-plus" aria-hidden="true"></span>
|
|
{% trans 'Create Wiki' %}
|
|
</a>
|
|
<a href="{% url 'tiddlywiki:upload' %}" class="btn btn-default"
|
|
role="button" title="{% trans 'Upload Wiki' %}">
|
|
<span class="fa fa-upload" aria-hidden="true"></span>
|
|
{% trans 'Upload Wiki' %}
|
|
</a>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
{% if not wikis %}
|
|
<p>{% trans 'No wikis available.' %}</p>
|
|
{% else %}
|
|
<div id="tiddlywiki-wiki-list" class="list-group list-group-two-column">
|
|
{% for wiki in wikis %}
|
|
<div class="list-group-item">
|
|
<a class="wiki-label" href="/tiddlywiki/{{ wiki }}" target="_blank"
|
|
title="{% blocktrans %}Go to wiki {{ wiki }}{% endblocktrans %}">
|
|
{{ wiki }}
|
|
</a>
|
|
|
|
<a href="{% url 'tiddlywiki:rename' wiki %}"
|
|
class="wiki-edit btn btn-default btn-sm secondary"
|
|
role="button"
|
|
title="{% blocktrans %}Rename wiki {{ wiki }}{% endblocktrans %}">
|
|
<span class="fa fa-pencil-square-o" aria-hidden="true"></span>
|
|
</a>
|
|
|
|
<a href="{% url 'tiddlywiki:delete' wiki %}"
|
|
class="wiki-delete btn btn-default btn-sm secondary"
|
|
role="button"
|
|
title="{% blocktrans %}Delete wiki {{ wiki }}{% endblocktrans %}">
|
|
<span class="fa fa-trash-o" aria-hidden="true"></span>
|
|
</a>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|