{% extends 'base.html' %} {% block content %} {% for profile in object_list %} {% endfor %}
Profile name Templates Actions Profile fields Actions
{{ profile.name }}
    {% for file in profile.files.all %}
  • {{ file }}
  • {% endfor %}
    {% for action in profile.actions.all %}
  • name: {{ action }}, action: {{ action.action }}
  • {% endfor %}
    {% for field in profile.profile_fields.all %}
  • {{ field }}
  • {% endfor %}
edit {# delete#}
New profile {% endblock %}