{% extends 'accounts/base_account.html' %} {% load humanize %} {% block account_content %}

Dashboard

Add New Listing

{% if needs_verification and user.user_type == 'owner' %}
Account Verification Required

Verify your account to unlock all features and increase trust with renters.

Start Verification
{% endif %} {% if incomplete_profile %}
Complete Your Profile

Add more details to your profile to help others get to know you better.

Update Profile
{% endif %}
{% if user.user_type == 'owner' %}
Listings

{{ total_equipment|default:0 }}

{{ active_listings|default:0 }} active
Total Bookings

{{ total_bookings|default:0 }}

{{ upcoming_bookings|default:0 }} upcoming
Earnings

Ksh {{ total_earnings|default:0|intcomma }}

Lifetime earnings
Reviews

{{ review_count|default:0 }}

Average rating
{% else %}
Total Trips

{{ total_bookings|default:0 }}

{{ upcoming_trips|default:0 }} upcoming
Wishlist

{{ wishlist_count|default:0 }}

Saved items
Reviews

{{ reviews_given|default:0 }}

Reviews given
Messages

{{ unread_messages|default:0 }}

Unread messages
{% endif %}
Recent Activity
{% if recent_activity %} View All {% endif %}
{% if recent_activity %}
{% for activity in recent_activity %}
{{ activity.title }}
{{ activity.timestamp|timesince }} ago

{{ activity.description }}

{{ activity.title }}

{{ activity.date|timesince }} ago {% if activity.status %} {{ activity.status|title }} {% endif %}

{% endfor %}
{% else %} {% include 'components/empty_state.html' with icon='fas fa-inbox' title='No Recent Activity' message="You don't have any recent activities. Your bookings, listings, and other activities will appear here." action_url='{% url "equipment:list" %}' action_text='Browse Equipment' action_icon='fas fa-arrow-right' small=true %} {% endif %}
{% if user.user_type == 'owner' %}
Performance
Response Rate 95%
Acceptance Rate 88%
{% endif %} {% endblock %}