PonyConf/cfp/templates/cfp/staff/talk_decide.html

26 lines
1.1 KiB
HTML
Raw Permalink Normal View History

2017-07-30 14:57:38 +00:00
{% extends 'cfp/staff/base.html' %}
{% load i18n %}
{% block talkstab %} class="active"{% endblock %}
{% block content %}
<h1>{% if accept %}{% trans "Are you sure to accept this proposals?" %}{% else %}{% trans "Are you sure to decline this proposals?" %}{% endif %}</h1>
<h3>{% trans "Information about the proposals" %}</h3>
<b>{% trans "Title:" %}</b> {{ talk.title }}<br />
<b>{% trans "Kind:" %}</b> {{ talk.category }}<br />
<h3>{% trans "Information for the proposer" %}</h3>
2017-07-30 19:52:14 +00:00
<form method="post">
2017-07-30 14:57:38 +00:00
{% csrf_token %}
<div class="form-group">
<label for="message">{% trans "If you want to send a message to the proposer, please enter it below. Remember to indicate which talk your message is reffering." %}</label>
<textarea name="message" class="form-control" rows="5"></textarea>
</div>
<button type="submit" class="btn btn-{% if accept %}success{% else %}danger{% endif %}">{% if accept %}{% trans "Accept the proposal" %}{% else %}{% trans "Decline the proposal" %}{% endif %}</button>
2017-11-25 21:41:21 +00:00
<a class="btn btn-default" href="{% url 'talk-details' talk.pk %}">{% trans "Cancel" %}</a>
2017-07-30 14:57:38 +00:00
</form>
{% endblock %}