{# -*- engine:django -*- #}
{% extends "core/base.html" %}
{% load i18n static rules %}
{% block browser_title %}{% blocktrans %}Seating plan{% endblocktrans %}{% endblock %}
{% block page_title %}
{% trans "Back" %}
{% blocktrans with plan=object %}Seating plan: {{ plan }}{% endblocktrans %}
{% endblock %}
{% block extra_head %}
{% endblock %}
{% block content %}
{% has_perm "stoelindeling.edit_seatingplan_rule" user seating_plan as can_edit %}
{% has_perm "stoelindeling.delete_seatingplan_rule" user seating_plan as can_delete %}
{% if can_edit %}
{% trans "Edit" %}
{% endif %}
{% if can_delete %}
{% trans "Delete" %}
{% endif %}
{% include "stoelindeling/seating_plan/render.html" with seating_plan=object %}
{% endblock %}