{% 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 }}

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

{{ item.description|truncatewords:20 }}

{{ item.content_type }} Step {{ item.step }}
{% endfor %}
{% else %}

{% trans "No Content Yet" %}

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

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