{% extends "rest_framework/base.html" %} {% load staticfiles %} {% load i18n %} {% load rest_framework %} {% block custom_style %} {% endblock %} {% block bootstrap_theme %} {% endblock %} {% block script %} {% endblock %} {% block content %}

{% if name %}{{ name }}{% endif %} {% block description %} {{ description }} {% if not description %}{{ name }}{% endif %} {% endblock %}

{% if 'GET' in allowed_methods %}
{% endif %} {% if post_form %} {% endif %} {% if put_form %} {% endif %} {% if delete_form %}
{% endif %} {% if filter_form %} {% endif %}

{% if paginator %} {% endif %}
{% if style == 'list' %} {% include "rest_framework/admin/list.html" %} {% else %} {% include "rest_framework/admin/detail.html" %} {% endif %}
{% if paginator %} {% endif %}
{% if error_form %} {% endif %} {% if filter_form %} {{ filter_form }} {% endif %} {% endblock %}