2006-05-02 09:31:56 +08:00
|
|
|
{% extends "admin/base_site.html" %}
|
2005-12-01 14:52:16 +08:00
|
|
|
{% load i18n %}
|
2011-09-21 02:30:06 +08:00
|
|
|
{% load url from future %}
|
|
|
|
|
|
|
|
{% block breadcrumbs %}
|
|
|
|
<div class="breadcrumbs">
|
|
|
|
<a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
|
|
|
|
› {% trans 'Documentation' %}</a>
|
|
|
|
</div>
|
2011-11-16 18:30:19 +08:00
|
|
|
{% endblock %}
|
2005-07-16 11:46:17 +08:00
|
|
|
{% block title %}Please install docutils{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<h1>Documentation</h1>
|
|
|
|
|
|
|
|
<div id="content-main">
|
2006-07-22 04:48:17 +08:00
|
|
|
<h3>The admin documentation system requires Python's <a href="http://docutils.sf.net/">docutils</a> library.</h3>
|
2005-07-29 23:25:31 +08:00
|
|
|
|
2006-07-22 04:48:17 +08:00
|
|
|
<p>Please ask your administrators to install <a href="http://docutils.sf.net/">docutils</a>.</p>
|
2005-07-16 11:46:17 +08:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|