{% extends 'user_dashboard/dashboard_base.html' %} {% block title %}{{ page_title }}{% endblock %} {% block content %}

{{ page_title }}

Confirm deletion of Data Support DO record

{% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %}

⚠️ Delete Confirmation

Are you sure you want to delete this record?

This action cannot be undone. All associated daily data will also be deleted.

Record Details

{{ data_do.name }}

{{ data_do.created_at|date:"M d, Y H:i"|default:"N/A" }}

{{ data_do.description|default:"No description" }}

{% if data_do.do_daily.all %}

Associated Daily Data ({{ data_do.do_daily.count }} records)

This will also delete all daily data records

The following daily data will be permanently deleted:

    {% for daily in data_do.do_daily.all|slice:":5" %}
  • Day {{ daily.day }} - Weight: {{ daily.weight }}
  • {% endfor %} {% if data_do.do_daily.count > 5 %}
  • ... and {{ data_do.do_daily.count|add:"-5" }} more records
  • {% endif %}
{% endif %}
{% csrf_token %}
Cancel
{% endblock %}