{% extends "webpage/base.html" %} {% load static %} {% load webpage_extras %} {% block title %}{{ object.name }}{% endblock %} {% block content %}
{% if object.get_prev %}

{% endif %}

{{ object }} {% if user.is_authenticated %} {% endif %}

{% if object.get_next %}

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