{% extends "base.html" %} {% load static %} {% block title %}{{ object }}{% endblock %} {% block content %} {% include 'browsing/partials/detailview_breadcrumb.html' %}
{% include 'browsing/partials/detailview_title.html' %} {% block custom %}

Basic Information

{% for x in object.field_dict %}
{{ x.verbose_name }}
{{ x.value }}
{% endfor %}
{% if user.is_authenticated %}
{% endif %}
{% endblock custom %} {% endblock %}