Changeset - 711fde5a2fd8
[Not reviewed]
0 1 0
Ben Sturmfels (bsturmfels) - 3 months ago 2024-06-08 00:11:40
ben@sturm.com.au
Add email addresses to talk proposals list
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/symposion/reviews/_review_table.html
Show inline comments
...
 
@@ -13,25 +13,25 @@
 
        <th class="votes">{% trans "+1" %}</th>
 
        <th class="votes">{% trans "-1" %}</th>
 
        <th class="votes">{% trans "-2" %}</th>
 
        <th><a href="#" class="tip" title="{% trans "Your Rating" %}"><i class="oi oi-person"></i></a></th>
 
    </thead>
 

	
 
    <tbody>
 
        {% for proposal in proposals %}
 
            <tr class="{{ proposal.user_vote_css }}">
 
                <td>{{ proposal.number }}</td>
 
                <td>
 
                    <a href="{% url "review_detail" proposal.pk %}">
 
                        <small><strong>{{ proposal.speaker }}</strong></small>
 
                        <small><strong>{{ proposal.speaker }} &lt;{{ proposal.speaker.email }}&gt;</strong></small>
 
                        <br />
 
                        {{ proposal.title }}
 
                    </a>
 
                </td>
 
                <td>
 
                    {% if proposal.cancelled %}
 
                        <p class="badge-danger">WITHDRAWN</p>
 
                    {% else %}
 
                        <p class="badge-success">Not withdrawn</p>
 
                    {% endif %}</td>
 
                <td>{{ proposal.get_target_audience_display }}</td>
 
                {% if proposal.talk_format %}
0 comments (0 inline, 0 general)