Changeset - 51640e9893a2
[Not reviewed]
0 2 0
Christopher Neugebauer - 8 years ago 2016-07-17 07:51:50
_@chrisjrn.com
Fix issue in proposals display code (#49)

* Fixes a biography display-related oops

* Fixes translation issue on cancelled proposals
2 files changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/symposion/proposals/_proposal_fields.html
Show inline comments
...
 
@@ -48,10 +48,10 @@
 
      <h4>{% trans "Speaker:" %} {{ speaker.name }}</h4>
 
      <h5>{% trans "Biography" %}</h5>
 

	
 
      <div class="biography">{{ proposal.speaker.biography_html|safe }}&nbsp;</div>
 
      <div class="biography">{{ speaker.biography_html|safe }}&nbsp;</div>
 

	
 
      <h5>{% trans "Experience" %}</h5>
 
      <div class="biography">{{ proposal.speaker.experience_html|safe }}&nbsp;</div>
 
      <div class="biography">{{ speaker.experience_html|safe }}&nbsp;</div>
 
    {% endfor %}
 

	
 
    {% can_manage proposal as can_manage_proposal %}
pinaxcon/templates/symposion/proposals/proposal_detail.html
Show inline comments
...
 
@@ -34,7 +34,7 @@
 
                      </a>
 
                  {% endif %}
 
              {% else %}
 
                  {% trans 'Cancelled' }
 
                  {% trans 'Cancelled' %}
 
              {% endif %}
 
          </div>
 
        </div>
0 comments (0 inline, 0 general)