Changeset - 8cb9a41f410a
[Not reviewed]
0 1 1
James Tauber - 12 years ago 2012-09-08 22:39:38
jtauber@jtauber.com
first pass at result notification prepare template
2 files changed with 42 insertions and 1 deletions:
0 comments (0 inline, 0 general)
symposion/templates/reviews/result_notification.html
Show inline comments
...
 
@@ -13,7 +13,6 @@
 
{% block body %}
 
    <h1>Result Notification</h1>
 
    
 
    
 
    <form method="post" action="{% url result_notification_prepare section_slug status %}">
 
        
 
        {% csrf_token %}
symposion/templates/reviews/result_notification_prepare.html
Show inline comments
 
new file 100644
 
{% extends "reviews/base.html" %}
 

	
 
{% load i18n %}
 

	
 
{% block body %}
 
    <h1>Result Notification Prepare</h1>
 
    
 
    <div class="row">
 
        <div class="span4">
 
            <h2>Proposals</h2>
 
            <table class="table table-striped table-compact">
 
                {% for proposal in proposals %}
 
                    <tr>
 
                        <td>
 
                            <strong>{{ proposal.speaker }}</strong> ({{ proposal.speaker.email }})
 
                            <br />
 
                            {{ proposal.title }}
 
                        </td>
 
                    </tr>
 
                {% endfor %}
 
            </table>
 
        </div>
 
        <div class="span6">
 
            <h2>Email</h2>
 
            
 
            
 
            <form method="post" action="{% url result_notification_send section_slug status %}">
 
                Subject:
 
                <input name="subject" value="{{ notification_template.subject }}" />
 
                <br/>
 
                Body:
 
                <textarea name="body">
 
                    {{ notification_template.body }}
 
                </textarea>
 
                <br/>
 
                <input type="hidden" name="notification_template" value="{{ notification_template.pk }}" />
 
                <input type="hidden" name="proposal_pks" value="{{ proposal_pks }}" />
 
                <button type="submit" class="btn btn-primary">Send</button>
 
            </form>
 
        </div>
 
    </form>
 
{% endblock %}
0 comments (0 inline, 0 general)