Merge branch 'clarify_profile_buttons' into 'ticket-testing'

Clarify function of buttons on profile form

See merge request LCA2018/symposion_app!54
This commit is contained in:
James Polley 2017-10-04 07:12:43 +00:00
commit 64f9b3fb6c

View file

@ -34,8 +34,10 @@ THIS IS THE FORM
{% 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>
<input class="btn btn-success" type="submit" value="Save Profile" />
{% if user.attendee %}
<a class="btn btn-info" href="{% url "dashboard" %}">Cancel</a>
{% endif %}
</div>
</fieldset>
</form>