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 %}
0 comments (0 inline, 0 general)