{% extends "base.html" %} {% load custom_tags_and_filters %} {% block extrahead %} {% load static %} {% endblock %} {% block title %}Floor Plan Editor{% endblock %} {% block body %} {% if loaded_floor_plan %}
{% include 'pagination/pagination_column.html' with order_by='name' name='Floor Plan List' %} | Actions |
---|---|
|
{% with request.GET.urlencode as query_params %}
{% url 'floor_plan' floor_plan.id as view_url %}
{% button size="small" type="view" value="Open" url=view_url|add:"?"|add:query_params %}
{% endwith %}
{% url 'floor_plan_edit' floor_plan.id as edit_url %}
{% button size="small" type="edit" value="Edit" url=edit_url %}
{% if floor_plan.is_default %}
{% else %}
{% endif %}
|