File diff 5d4b81ae8607 → f369e1d8adc6
symposion/templates/proposals/proposal_edit.html
Show inline comments
 
{% extends "proposals/base.html" %}
 

	
 
{% load url from future %}
 

	
 

	
 
{% load bootstrap_tags %}
 
{% load markitup_tags %}
 

	
...
 
@@ -8,7 +11,7 @@
 
{% block body %}
 
    <h1>Edit: {{ proposal.title }}</h1>
 
    
 
    <p><a href="{% url proposal_speaker_manage proposal.pk %}">Manage speakers</a></p>
 
    <p><a href="{% url 'proposal_speaker_manage' proposal.pk %}">Manage speakers</a></p>
 
    
 
    <form method="POST" action="" enctype="multipart/form-data">
 
        {% csrf_token %}
...
 
@@ -17,7 +20,7 @@
 
        </fieldset>
 
        <div class="form-actions">
 
            <input class="btn btn-primary" type="submit" value="Save" />
 
            <a class="btn" href="{% url proposal_detail proposal.pk %}">Cancel</a>
 
            <a class="btn" href="{% url 'proposal_detail' proposal.pk %}">Cancel</a>
 
        </div>
 
    </form>
 
{% endblock %}