mirror of
https://github.com/django/django.git
synced 2025-05-31 03:06:29 +00:00
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3415 bcc190cf-cafb-0310-a4f2-bffc1f526a37
18 lines
679 B
HTML
18 lines
679 B
HTML
{% extends "admin/base_site.html" %}
|
|
{% load i18n %}
|
|
{% block breadcrumbs %}<div class="breadcrumbs"><a href="../">Home</a> › Documentation</div>{% endblock %}
|
|
{% block userlinks %}<a href="../password_change/">{% trans 'Change password' %}</a> / <a href="../logout/">{% trans 'Log out' %}</a>{% endblock %}
|
|
{% block title %}Please install docutils{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>Documentation</h1>
|
|
|
|
<div id="content-main">
|
|
<h3>The admin documentation system requires Python's <a href="http://docutils.sf.net/">docutils</a> library.</h3>
|
|
|
|
<p>Please ask your administrators to install <a href="http://docutils.sf.net/">docutils</a>.</p>
|
|
</div>
|
|
|
|
{% endblock %}
|