{% extends "base.html" %} {% load static %} {% block title %}Rider Management{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{% for rider in riders %} {% endfor %}
Full Name Mobile Email Profile Status Trash Created Actions
{{ rider.full_name }} {{ rider.mobile_number }} {{ rider.email }} {% if rider.profile_pic %} {% endif %} {% if rider.status == 'active' %} Active {% else %} Inactive {% endif %} {% if rider.trash %} Trashed {% else %} Normal {% endif %} {{ rider.created_at|date:"M d, Y H:i" }}
{% csrf_token %}
{% endblock %} {% block extra_js %} {% endblock %}