48c28651b8
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.
18 lines
514 B
HTML
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 %}
|