File diff c6314ae230da → 1886323d7431
pinaxcon/templates/registrasion/profile_form.html
Show inline comments
...
 
@@ -3,7 +3,6 @@
 
{% load pyconau2017_tags %}
 

	
 
{% block header_title %}Your profile{% endblock %}
 
{% block header_inset_image %}{% illustration "antarctica.svg" %}{% endblock %}
 
{% block header_paragraph %}
 
  These details will appear on your badge, your invoices, and will be used
 
  to order catered food at the conference.
...
 
@@ -11,23 +10,22 @@
 

	
 
{% block scripts_extra %}
 
  {{ form.media.js }}
 
    <script type="text/javascript">
 
  <script type="text/javascript">
 
  </script>
 
{% endblock %}
 

	
 
{% block content %}
 

	
 
  <form method="post" action="">
 
  <form class="form-horizontal" method="post" action="">
 
    {% csrf_token %}
 

	
 
    <fieldset>
 
        {% include "_form_snippet.html" with form=form %}
 
        <br />
 
        <div class="btn-group">
 
          <input class="btn" type="submit" value="Save Profile" />
 
          <a class="btn btn-primary" href="{% url "dashboard" %}">Return to dashboard</a>
 
        </div>
 
      {% include "_form_snippet.html" with form=form %}
 
      <br />
 
      <div class="btn-group">
 
        <input class="btn" type="submit" value="Save Profile" />
 
        <a class="btn btn-primary" href="{% url "dashboard" %}">Return to dashboard</a>
 
      </div>
 
    </fieldset>
 

	
 
  </form>
 
{% endblock %}