{% extends 'dashboard/base.html' %} {% load static %} {% load customtag %} {% block title %}{{ title }} - {{ seo_settings.meta_title }}{% endblock title %} {% block content %}

Dashboard

Welcome {% if request.user.is_authenticated %}{{request.user.userprofile.name}}{% if request.user.is_verified %}ionicons-v5-e{% endif %} {% else %}there {% endif %}

Here whats happing in your account today

vector women with leptop

{{ services.count }}

Services

{{ projects.count }}

Projects
{% if request.user.role == 'Admin' %}

{{ clients.count }}

Clients

{{ contacts.count }}

Contacts

{{ contacts.count }}

Contacts
{% endif %} {% if request.user.role == 'Admin' %}
Recent Contacts
{% if contacts %}
    {% for contact in contacts|slice:":3" %}
  • {{ contact.created_at }}

    {{ contact.name }}
    {{ contact.message|truncatewords:'12' }}
  • {% endfor %}
{% else %}
  • You don't have any contacts.
{% endif %}
{% endif %}
{% endblock content %}