{% extends "base.html" %} {% load crispy_forms_tags %} {% block content %}
Header
{% if mnts %} You have the following Maintainers associated with you {% for mnt in mnts %} {% endfor %}
Handle Name? Contact Actions
{{ mnt.handle }} {{ mnt.description }} {% for contact in mnt.admin_c.all %}{{ contact }}{% endfor %}
{% else %} You don't have a maintainer! Start by creating a Maintainer and a Person Object!
{% csrf_token %}

Maintainer Object

This object will be used to identify resources you are allowed to edit via your maintainer {{ mntForm | crispy }}

Person Object

This object will be used to identify yourself as a person to other people, used for your maintainer object {{ contactForm | crispy }}
{% endif %}
{% endblock %}