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

{% trans "Onboarding Content" %}

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

{% trans "Add Content" %}
{% if content_items %}
{% for item in content_items %}

{{ item.title_en }}

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

{{ item.description_en|truncatewords:20 }}

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

{% trans "No Content Yet" %}

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

{% trans "Add Content" %}
{% endif %}
{% endblock %}