{% extends "common/base.html" %} {% load crispy_forms_tags %} {% load static %} {% block title %} Delete Research Outputs {% endblock %} {% block content %}

Delete research outputs from project: {{project.title}}


{% with object_list as research_outputs %} {% if research_outputs %}
{% csrf_token %}
{% for research_output in research_outputs %} {% endfor %}
Research Output
{% if research_output.title %} {{ research_output.title }} {% endif %}
{{ research_output.description | linebreaks }}
Back to Project
{% else %} Back to project
No research outputs to delete!
{% endif %} {% endwith %} {% endblock %}