{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{% trans "Manage Onboarding Content" %}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% trans "Back to Dashboard" %}

{% trans "Onboarding Content" %}

{% trans "Manage the content shown during staff onboarding" %}

{% trans "All Content Items" %}

{% if content_items %}
{% for item in content_items %}

{{ item.get_localized_title }}

{% if item.is_active %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %}

{{ item.get_localized_description|truncatewords:20 }}

{{ item.code|default:"N/A" }} {% if item.category %} {{ item.category.get_localized_name }} {% endif %} {{ item.created_at|date:"M d, Y" }}
{% endfor %}
{% else %}

{% trans "No Content Yet" %}

{% trans "Start by adding your first onboarding content item" %}

{% endif %}
{% endblock %}