User Personas

{% for persona in personas %}
{% if persona.image %} {{ persona.persona_name }} {% else %}
No Image Available
{% endif %}
{{ persona.persona_name }}

{{ persona.description|default:"No description provided." }}

  • Status: {% if persona.is_active %} Active {% else %} Inactive {% endif %}
  • Created: {{ persona.created_at|date:"M d, Y" }}
  • Updated: {{ persona.updated_at|date:"M d, Y" }}
  • Attributes:
      {% for key, value in persona.attributes.items %}
    • {{ key }}: {{ value }}
    • {% empty %}
    • No attributes available.
    • {% endfor %}
{% empty %}
{% endfor %}