{% extends 'custom_admin/base.html' %} {% load static %} {% block title %}Dashboard{% endblock %} {% block page_title %}Dashboard{% endblock %} {% block content %}

Land Properties

{{ stats.total_land_properties }}

Logo Management

{{ stats.logo_count }}

{{ stats.active_logo_count }} active

Carousel Slides

{{ stats.carousel_slides }}

{{ stats.active_carousel_slides }} active

Contact Messages

{{ stats.total_contact_messages }}

{{ stats.new_contact_messages }} new

Recent Activities

View All
{% if recent_activities %}
{% for activity in recent_activities %}
{% if activity.action == 'create' %} {% elif activity.action == 'update' %} {% elif activity.action == 'delete' %} {% elif activity.action == 'login' %} {% else %} {% endif %}

{{ activity.admin.username }}

{{ activity.description }}

{{ activity.timestamp|timesince }} ago

{% endfor %}
{% else %}

No recent activities

{% endif %}

Recent Land Properties

View All
{% if recent_land_properties %}
{% for land_property in recent_land_properties %}
{% if land_property.image %} {{ land_property.name }} {% else %}
{% endif %}

{{ land_property.name }}

{{ land_property.location }}

{{ land_property.get_project_status_display }} {% if land_property.is_featured %} Featured {% endif %}
{% endfor %}
{% else %}

No land properties found

{% endif %}

Quick Actions

Logo Upload

Upload and manage logo

Carousel Slides

Manage homepage slides

Land Properties

Manage property listings

Contact Messages

Manage inquiries

Activity Log

View system activities

Contact Page

View contact form

View Website

Preview your site

{% endblock %}