mysteriendrama/lib/python3.11/site-packages/django/contrib/admindocs/templates/admin_doc/missing_docutils.html
2023-07-22 12:13:39 +02:00

23 lines
786 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "admin/base_site.html" %}
{% load i18n %}
{% block breadcrumbs %}
<div class="breadcrumbs">
<a href="{% url 'admin:index' %}">{% translate 'Home' %}</a>
&rsaquo; {% translate 'Documentation' %}
</div>
{% endblock %}
{% block title %}{% translate 'Please install docutils' %}{% endblock %}
{% block content %}
<h1>{% translate 'Documentation' %}</h1>
<div id="content-main">
<h3>{% blocktranslate with "https://docutils.sourceforge.io/" as link %}The admin documentation system requires Pythons <a href="{{ link }}">docutils</a> library.{% endblocktranslate %}</h3>
<p>{% blocktranslate with "https://docutils.sourceforge.io/" as link %}Please ask your administrators to install <a href="{{ link }}">docutils</a>.{% endblocktranslate %}</p>
</div>
{% endblock %}