{% extends "admin/base.html" %}
{% load i18n boardinghouse %}
{% block title %}{{ title }} | {% trans 'Django site admin' %}{% endblock %}
{% block content_title %}
{% if title %}
{{ title }}
{% endif %}
{% if cl.model|is_schema_aware %}
{% if selected_schema %}
Only displaying objects from {{ selected_schema|schema_name }}.
{% else %}
No schema selected.
{% endif %}
{% endif %}
{% if adminform and original.pk and original|is_schema_aware %}
This object is from {{ selected_schema|schema_name }}.
{% endif %}
{% if action_list and object|is_schema_aware %}
This object is from {{ selected_schema|schema_name }}.
{% endif %}
{% if adminform and add and adminform.form.instance|is_schema_aware %}
{% if not selected_schema %}
You must select a schema in order to create {{ opts.verbose_name_plural }}.
{% else %}
This object will belong to {{ selected_schema|schema_name }}.
{% endif %}
{% endif %}
{% endblock %}
{% block branding %}
{% trans 'Django administration' %}
{% if schemata %}