{% extends "common/base.html" %} {% load crispy_forms_tags %} {% load common_tags %} {% load static %} {% block title %} Remove Project Attribute {% endblock %} {% block content %}

Removing project attribute from {{ project }}

{% if formset %}
{% csrf_token %}
{% for form in formset %} {% endfor %}
Type Value
{{ form.selected }} {{ form.name.value }} {{ form.value.value }}
{{ formset.management_form }}
Back to Project
{% else %}
No attributes to remove!
Back to Project {% endif %} {% endblock %}