{% comment %} {% extends 'base.html' %} {% endcomment %} {% load static widget_tweaks %} {% block content %}

Dataset you own

{% for object in objects_own %}

{{ object }}

{# Modal to confirm project delete #} {% include "confirm_modal.html" with objecttype=object_type objectid=object.id objectname=object %} {% endfor %}

Dataset you can view

{% for object in objects_view %}

{{ object }}

{# Modal to confirm project delete #} {% include "confirm_modal.html" with objecttype=object_type objectid=object.id objectname=object %} {% endfor %} {% if error_msg %}

{{ error_msg }}

{% endif %} {% endblock %}