Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

missing_docutils.html 734B

12345678910111213141516171819202122
  1. {% extends "admin/base_site.html" %}
  2. {% load i18n %}
  3. {% block breadcrumbs %}
  4. <div class="breadcrumbs">
  5. <a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
  6. &rsaquo; {% trans 'Documentation' %}
  7. </div>
  8. {% endblock %}
  9. {% block title %}{% trans 'Please install docutils' %}{% endblock %}
  10. {% block content %}
  11. <h1>{% trans 'Documentation' %}</h1>
  12. <div id="content-main">
  13. <h3>{% blocktrans with "http://docutils.sf.net/" as link %}The admin documentation system requires Python's <a href="{{ link }}">docutils</a> library.{% endblocktrans %}</h3>
  14. <p>{% blocktrans with "http://docutils.sf.net/" as link %}Please ask your administrators to install <a href="{{ link }}">docutils</a>.{% endblocktrans %}</p>
  15. </div>
  16. {% endblock %}