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

Tìm kiếm thông tin

{% if locations %}
{% for location in locations %} {% endfor %}
Số hợp đồng Người nhập Địa chỉ Hình ảnh Tọa độ
{{ location.contract_number }} {{ location.acct_ktv }} {{ location.address_note }} {% if location.image_urls %} Hình ảnh {% endif %}
{{ location.latitude }}, {{ location.longitude }}
{% elif query %}
Không tìm thấy kết quả nào cho "{{ query }}"
{% endif %}

Lịch sử nhập dữ liệu

{% for location in history %} {% endfor %}
# Số hợp đồng Người nhập Địa chỉ Hình ảnh Tọa độ Ngày nhập
{{ forloop.counter|add:history.start_index|add:-1 }} {{ location.contract_number }} {{ location.acct_ktv }} {{ location.address_note }} {% if location.image_urls %} Hình ảnh {% endif %}
{{ location.latitude }}, {{ location.longitude }}
{{ location.created_at|date:"d/m/Y H:i" }}
{% if history.paginator.num_pages > 1 %} {% endif %}
{% endblock %}