{% extends "base/body_content.html" %} {% block title %}Manage plants{% endblock %} {% block main_content %}

Manage plants

{% if request.user.permissions.can_manage_plants %}
Create new plant
{% endif %} {% for item in items %} {% endfor %}
Plant name Administrators Properties Order Public Delete
{{ item.format_name }} {% for user in item.admins.all %} {{ user.format_name }}{% if not forloop.last %}, {% endif %} {% empty %} None {% endfor %} {% if not forloop.first %} {% endif %} {% if not forloop.last %} {% endif %}
{% endblock %}