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

{{ page_title }}

Confirm deletion of Manual Weight record

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

⚠️ Delete Confirmation

Are you sure you want to delete this Manual Weight record?

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

Record Details

{{ manual_weight.name }}

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

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

{% if manual_weight.weight_daily.all %}

Associated Daily Weight Data ({{ manual_weight.weight_daily.count }} records)

This will also delete all daily weight data records

The following daily weight data will be permanently deleted:

    {% for daily in manual_weight.weight_daily.all|slice:":5" %}
  • Day {{ daily.day }} - Weights: {{ daily.weight_1 }}/{{ daily.weight_2 }}/{{ daily.weight_3 }}/{{ daily.weight_4 }} (Date: {{ daily.date_taken }})
  • {% endfor %} {% if manual_weight.weight_daily.count > 5 %}
  • ... and {{ manual_weight.weight_daily.count|add:"-5" }} more records
  • {% endif %}
{% endif %}
{% csrf_token %}
Cancel
{% endblock %}