{% extends "dashboard/base.html" %} {% block title %}Feature Management{% endblock %} {% block content %}

Feature Management

Create, manage, and configure system features for role-based access control

{{ features|length }} Features

Create New Feature

Add a new feature to your system's access control

{% csrf_token %}

Must match URL name in urls.py

Available Features ({{ features|length }})

Manage system features and their availability

{% if features %}
{% for feature in features %}

{{ feature.name }}

{% if feature.is_active %}
Active
{% else %}
Inactive
{% endif %} {% if feature.category %} {{ feature.category }} {% endif %}
{% if feature.description %}

{{ feature.description }}

{% endif %}
{{ feature.url_name }} Created {{ feature.created_dtm|date("M d, Y") }} {% if feature.updated_dtm != feature.created_dtm %} Updated {{ feature.updated_dtm|date("M d, Y") }} {% endif %}
{% csrf_token %}
{% csrf_token %}
{% endfor %}
{% else %}

No Features Yet

Create your first feature to start managing access control for your application.

{% endif %}

Edit Feature

{% csrf_token %}
{% endblock %} {% block extra_js %} {% endblock %}