symposion_app/pinaxcon/templates/symposion/proposals/proposal_submit.html
Sachi King 48c28651b8 Remove boxes
Boxes takes content directly from the DB and drops it into the django
templates.  This is rather ugly and goes against keeping as much as we
can in static locations.  As such, this is being dropped.
2017-03-31 11:54:46 +11:00

18 lines
514 B
HTML

{% extends "symposion/proposals/base.html" %}
{% load i18n %}
{% block head_title %}{% trans "Submit A Proposal" %}{% endblock %}
{% block proposals_body %}
{% if kinds %}
<p>Select what kind of proposal you'd like to submit:</p>
{% for kind in kinds %}
<a href="{% url "proposal_submit_kind" kind.slug %}" class="btn btn-default">{{ kind }}</a>
{% endfor %}
{% else %}
<p>Proposals are not currently open for submission.</p>
{% endif %}
{% endblock %}