Changeset - 73179635ef38
[Not reviewed]
0 1 0
James Tauber - 12 years ago 2012-11-11 14:11:54
jtauber@jtauber.com
fixed typo in speaker manage template
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
symposion/templates/proposals/proposal_speaker_manage.html
Show inline comments
 
{% extends "proposals/base.html" %}
 
{% load i18n %}
 

	
 
{% load bootstrap_tags %}
 

	
 
{% block body %}
 
    <h1>{{% trans 'Proposal:' %} {{ proposal.title }}</h1>
 
    <h1>{% trans 'Proposal:' %} {{ proposal.title }}</h1>
 
    
 
    <p>
 
      <a href="{% url proposal_edit proposal.pk %}">{% trans 'Edit proposal' %}
 
      </a>
 
    </p>
 
    
 
    <h2>{% trans 'Current Speakers' %}</h2>
 
    
 
    {% for speaker in speakers %}
 
        {% if speaker.user %}
 
            <p><b>{{ speaker.name }}</b> &mdash; {{ speaker.email }}</p>
 
        {% else %}
 
            <p>{{ speaker.email }} &mdash; {% trans 'pending invitation' %}</p>
 
        {% endif %}
 
    {% endfor %}
 
    
 
    <h2>{% trans 'Add another speaker' %}</h2>
 
    
 
    <form method="POST" action="" enctype="multipart/form-data" class="uniForm">
 
        {% csrf_token %}
 
        {{ add_speaker_form|as_bootstrap }}
 
        <div class="form-action">
 
            <input type="submit" value="Add speaker" class="btn btn-primary" />
 
        </div>
0 comments (0 inline, 0 general)