{% extends 'base/base.html' %} {% load static %} {% load equipment_tags %} {% load image_utils %} {% load cart_tags %} {% load humanize %} {% block title %}Equipment Rental | PRACA{% endblock %} {% block extra_css %} {{ block.super }} {% endblock %} {% block content %} Skip to main content

{% if category %} {{ category.name }} Equipment {% else %} All Equipment {% endif %} ({{ page_obj.paginator.count }} items)

{% if page_obj %}
{% for group in page_obj %} {% with item=group.item %}
{% if item.is_featured %}
Featured
{% endif %} {% if request.user.is_authenticated %} {% with is_favorite=item|in_favorites:request.user %} {% endwith %} {% else %} {% endif %}
{% if item.images.first %} {% responsive_image item.images.first.image item.name 'card-img-top' %} {% else %} No image available for {{ item.name }} {% endif %} {% if item.images.count > 1 %}
{{ item.images.count }}
{% endif %}
name="start_date" required min="{{ today|date:'Y-m-d' }}">
KSh {{ item.daily_rate|intcomma }} per day
Details
{% endwith %} {% endfor %}
{% else %}

No Equipment Found

We couldn't find any equipment matching your criteria. Try adjusting your search or filters.

{% endif %} {% if is_paginated %} {% endif %}
{% if user.is_superuser %}

Debug Information

Page Object: {{ page_obj|yesno:"Exists,None" }}

Equipment Count: {{ page_obj.paginator.count|default:0 }}

{% if page_obj %}
First 3 Equipment Items:
{% for item in page_obj|slice:":3" %} {% endfor %}
ID Name Status Approved Daily Rate Owner
{{ item.id }} {{ item.name|truncatechars:30 }} {{ item.status }} {{ item.is_approved|yesno:"Yes,No" }} ${{ item.daily_rate|floatformat:2 }} {{ item.owner.username|default:"System" }}
{% endif %}
Query Parameters:
{{ request.GET|pprint|escape }}
{% endif %} {% endblock %} {% if not user.is_authenticated %}

Ready to rent or list your equipment?

Join our community of content creators and equipment owners today.

{% endif %} {% block extra_js %} {{ block.super }} {# Include parent's content first #}
{% endblock %}