{% extends 'generic/object_delete.html' %} {% load i18n %} {% block title %} {% trans "Clear Path Data" %} {% endblock %} {% block content %}
{% csrf_token %}
{% trans "Clear Path Data" %}

{% blocktrans with name=object.name %} Are you sure you want to clear the path data from segment "{{ name }}"? {% endblocktrans %}

{% trans "This will permanently remove:" %}

  • {% trans "Path geometry data" %}
  • {% trans "Path length calculation" %}
  • {% trans "Source format information" %}
  • {% trans "Path notes" %}

{% trans "The segment itself and all other data will remain unchanged. You can upload new path data later if needed." %}

{% trans "Current Path Information" %}
{% if object.path_notes %} {% endif %}
{% trans "Path Length" %} {% if object.path_length_km %} {{ object.path_length_km }} km {% else %} {{ ''|default:"—" }} {% endif %}
{% trans "Source Format" %} {{ object.get_path_source_format_display|default:object.path_source_format|default:"—" }}
{% trans "Segments Count" %} {{ object.get_path_segment_count }}
{% trans "Total Points" %} {{ object.get_total_points }}
{% trans "Path Notes" %} {{ object.path_notes|truncatewords:20 }}
{% endblock %}