{% extends 'custom_admin/base.html' %} {% block title %}Land Properties Management{% endblock %} {% block content %}

Land Properties Management

Clear
{% for land_property in page_obj %} {% empty %} {% endfor %}
Image Name Area Location Status Type Featured Active Actions
{% if land_property.image %} {{ land_property.name }} {% else %}
{% endif %}
{{ land_property.name }}
{{ land_property.get_division_display }}
{{ land_property.area }}
{{ land_property.district }}
{{ land_property.area_name }}
{{ land_property.get_project_status_display }} {{ land_property.get_property_type_display }}
{% csrf_token %}
{% csrf_token %}
No land properties found.
{% if page_obj.has_other_pages %}
{% if page_obj.has_previous %} Previous {% endif %} {% if page_obj.has_next %} Next {% endif %}
{% endif %}
{% endblock %}