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.

view_detail.html 896B

123456789101112131415161718192021222324252627282930313233
  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; <a href="{% url 'django-admindocs-docroot' %}">{% trans 'Documentation' %}</a>
  7. &rsaquo; <a href="{% url 'django-admindocs-views-index' %}">{% trans 'Views' %}</a>
  8. &rsaquo; {{ name }}
  9. </div>
  10. {% endblock %}
  11. {% block title %}{% blocktrans %}View: {{ name }}{% endblocktrans %}{% endblock %}
  12. {% block content %}
  13. <h1>{{ name }}</h1>
  14. <h2 class="subhead">{{ summary|striptags }}</h2>
  15. {{ body }}
  16. {% if meta.Context %}
  17. <h3>{% trans 'Context:' %}</h3>
  18. <p>{{ meta.Context }}</p>
  19. {% endif %}
  20. {% if meta.Templates %}
  21. <h3>{% trans 'Templates:' %}</h3>
  22. <p>{{ meta.Templates }}</p>
  23. {% endif %}
  24. <p class="small"><a href="{% url 'django-admindocs-views-index' %}">&lsaquo; {% trans 'Back to View documentation' %}</a></p>
  25. {% endblock %}