{% 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 {{ object.field_dict }} {% for key, value in object.field_dict.items %} {% endfor %}
{{ key }} {{ value }}
{% endblock custom %} {% endblock %}