36 lines
943 B
HTML
36 lines
943 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">Header</div>
|
|
<div class="panel-body">
|
|
{% if mnts %}
|
|
|
|
{% else %}
|
|
You don't have a maintainer! Start by creating a Maintainer and a Person Object!
|
|
|
|
<form action="{% url "whoisdb:dashboard" %}" method="post">
|
|
{% csrf_token %}
|
|
<h3>Maintainer Object</h3>
|
|
<small>This object will be used to identify resources you are allowed
|
|
to edit via your maintainer</small>
|
|
{{ mntForm | crispy }}
|
|
|
|
<h3>Person Object</h3>
|
|
<small>This object will be used to identify yourself as a person to other people, used for your maintainer object</small>
|
|
{{ contactForm | crispy }}
|
|
|
|
<button type="submit" class="btn btn-primary">Create</button>
|
|
</form>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|