Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-wiki
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
django-wiki
Commits
7df38983
Commit
7df38983
authored
Jul 25, 2017
by
cahrens
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove url from futures.
parent
5e0c937b
Hide whitespace changes
Inline
Side-by-side
Showing
26 changed files
with
3 additions
and
26 deletions
+3
-26
wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html
+0
-1
wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html
+0
-1
wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html
+0
-1
wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html
+0
-1
wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html
+0
-1
wiki/plugins/images/templates/wiki/plugins/images/index.html
+0
-1
wiki/plugins/images/templates/wiki/plugins/images/purge.html
+0
-1
wiki/plugins/images/templates/wiki/plugins/images/revision_add.html
+0
-1
wiki/plugins/images/templates/wiki/plugins/images/sidebar.html
+0
-1
wiki/plugins/links/templates/wiki/plugins/links/sidebar.html
+0
-1
wiki/templates/wiki/accounts/login.html
+0
-1
wiki/templates/wiki/article.html
+0
-1
wiki/templates/wiki/base.html
+1
-1
wiki/templates/wiki/create.html
+0
-1
wiki/templates/wiki/delete.html
+0
-1
wiki/templates/wiki/deleted.html
+0
-1
wiki/templates/wiki/dir.html
+0
-1
wiki/templates/wiki/edit.html
+0
-1
wiki/templates/wiki/error.html
+0
-1
wiki/templates/wiki/history.html
+0
-1
wiki/templates/wiki/includes/anonymous_blocked.html
+0
-1
wiki/templates/wiki/includes/article_menu.html
+1
-1
wiki/templates/wiki/includes/breadcrumbs.html
+1
-1
wiki/templates/wiki/permission_denied.html
+0
-1
wiki/templates/wiki/settings.html
+0
-1
wiki/templates/wiki/source.html
+0
-1
No files found.
wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html
View file @
7df38983
{% extends "wiki/article.html" %}
{% load wiki_tags i18n humanize %}
{% load url from future %}
{% block pagetitle %}{% trans "Delete" %} "{{ attachment.current_revision.get_filename }}"{% endblock %}
...
...
wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html
View file @
7df38983
{% extends "wiki/article.html" %}
{% load wiki_tags i18n humanize %}
{% load url from future %}
{% block pagetitle %}{% trans "History of" %} "{{ attachment.current_revision.get_filename }}"{% endblock %}
...
...
wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html
View file @
7df38983
{% extends "wiki/article.html" %}
{% load wiki_tags i18n humanize %}
{% load url from future %}
{% block pagetitle %}{% trans "Attachments" %}: {{ article.current_revision.title }}{% endblock %}
...
...
wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html
View file @
7df38983
{% extends "wiki/article.html" %}
{% load wiki_tags i18n humanize %}
{% load url from future %}
{% block pagetitle %}{% trans "Replace" %} "{{ attachment.current_revision.get_filename }}"{% endblock %}
...
...
wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html
View file @
7df38983
{% extends "wiki/article.html" %}
{% load wiki_tags i18n humanize %}
{% load url from future %}
{% block pagetitle %}{% trans "Add file to" %} "{{ article.current_revision.title }}"{% endblock %}
...
...
wiki/plugins/images/templates/wiki/plugins/images/index.html
View file @
7df38983
{% extends "wiki/article.html" %}
{% load wiki_tags i18n humanize thumbnail %}
{% load url from future %}
{% block pagetitle %}{% trans "Images" %}: {{ article.current_revision.title }}{% endblock %}
...
...
wiki/plugins/images/templates/wiki/plugins/images/purge.html
View file @
7df38983
{% extends "wiki/article.html" %}
{% load wiki_tags i18n humanize thumbnail %}
{% load url from future %}
{% block pagetitle %}{% trans "Purge deletion" %}: {{ image }}{% endblock %}
...
...
wiki/plugins/images/templates/wiki/plugins/images/revision_add.html
View file @
7df38983
{% extends "wiki/article.html" %}
{% load wiki_tags i18n humanize thumbnail %}
{% load url from future %}
{% block pagetitle %}{% trans "Replace image" %}: {{ image }}{% endblock %}
...
...
wiki/plugins/images/templates/wiki/plugins/images/sidebar.html
View file @
7df38983
{% load i18n wiki_tags wiki_images_tags humanize thumbnail %}
{% load url from future %}
<script
type=
"text/javascript"
>
function
insert_image
(
image_id
)
{
...
...
wiki/plugins/links/templates/wiki/plugins/links/sidebar.html
View file @
7df38983
{% load i18n %}
{% load url from future %}
<h4>
{% trans "Link to another wiki page" %}
</h4>
<p>
...
...
wiki/templates/wiki/accounts/login.html
View file @
7df38983
{% extends "wiki/base.html" %}
{% load i18n wiki_tags %}
{% load url from future %}
{% block pagetitle %}{% trans "Log in" %}{% endblock %}
{% block wiki_contents %}
...
...
wiki/templates/wiki/article.html
View file @
7df38983
{% extends "wiki/base.html" %}
{% load wiki_tags i18n %}
{% load url from future %}
{% block pagetitle %}{{ article.current_revision.title }}{% endblock %}
...
...
wiki/templates/wiki/base.html
View file @
7df38983
{% load sekizai_tags i18n %}
{% load url from future %}
<!DOCTYPE html>
{% load sekizai_tags i18n %}
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"utf-8"
>
...
...
wiki/templates/wiki/create.html
View file @
7df38983
{% extends "wiki/base.html" %}
{% load wiki_tags i18n sekizai_tags %}
{% load url from future %}
{% block pagetitle %}{% trans "Add new article" %}{% endblock %}
...
...
wiki/templates/wiki/delete.html
View file @
7df38983
{% extends "wiki/base.html" %}
{% load wiki_tags i18n sekizai_tags %}
{% load url from future %}
{% block pagetitle %}{% trans "Delete article" %}{% endblock %}
...
...
wiki/templates/wiki/deleted.html
View file @
7df38983
{% extends "wiki/base.html" %}
{% load wiki_tags i18n sekizai_tags %}
{% load url from future %}
{% block pagetitle %}{% trans "Article deleted" %}{% endblock %}
...
...
wiki/templates/wiki/dir.html
View file @
7df38983
{% extends "wiki/article.html" %}
{% load wiki_tags i18n humanize %}
{% load url from future %}
{% block pagetitle %}{% trans "Listing articles in" %} {{ article.current_revision.title }}{% endblock %}
...
...
wiki/templates/wiki/edit.html
View file @
7df38983
{% extends "wiki/article.html" %}
{% load wiki_tags i18n %}
{% load url from future %}
{% block pagetitle %}{% trans "Edit" %}: {{ article.current_revision.title }}{% endblock %}
...
...
wiki/templates/wiki/error.html
View file @
7df38983
{% extends "wiki/base.html" %}
{% load wiki_tags i18n %}
{% load url from future %}
{% block pagetitle %}{{ article.current_revision.title }}{% endblock %}
...
...
wiki/templates/wiki/history.html
View file @
7df38983
{% extends "wiki/article.html" %}
{% load wiki_tags i18n sekizai_tags %}
{% load url from future %}
{% block pagetitle %}{% trans "History" %}: {{ article.current_revision.title }}{% endblock %}
...
...
wiki/templates/wiki/includes/anonymous_blocked.html
View file @
7df38983
{% load i18n %}
{% load url from future %}
<em>
{% url 'wiki:signup' as signup_url %}
{% url 'wiki:login' as login_url %}
...
...
wiki/templates/wiki/includes/article_menu.html
View file @
7df38983
{% load i18n wiki_tags %}
{% load url from future %}
{% load i18n wiki_tags %}
{% with selected_tab as selected %}
...
...
wiki/templates/wiki/includes/breadcrumbs.html
View file @
7df38983
{% load i18n %}
{% load url from future %}
{% load i18n %}
{% if urlpath %}
<div
id=
"article-breadcrumbs"
>
...
...
wiki/templates/wiki/permission_denied.html
View file @
7df38983
{% extends "wiki/base.html" %}
{% load wiki_tags i18n %}
{% load url from future %}
{% block pagetitle %}Permission Denied{% endblock %}
...
...
wiki/templates/wiki/settings.html
View file @
7df38983
{% extends "wiki/article.html" %}
{% load wiki_tags i18n %}
{% load url from future %}
{% block pagetitle %}{% trans "Settings" %}: {{ article.current_revision.title }}{% endblock %}
...
...
wiki/templates/wiki/source.html
View file @
7df38983
{% extends "wiki/article.html" %}
{% load wiki_tags i18n humanize %}
{% load url from future %}
{% block pagetitle %}{% trans "Source of" %} {{ article.current_revision.title }}{% endblock %}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment