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 %} {% include "_form_snippet.html" with form=form %}
<br /> <br />
<div class="btn-group"> <div class="btn-group">
<input class="btn" type="submit" value="Save Profile" /> <input class="btn btn-success" type="submit" value="Save Profile" />
<a class="btn btn-primary" href="{% url "dashboard" %}">Return to dashboard</a> {% if user.attendee %}
<a class="btn btn-info" href="{% url "dashboard" %}">Cancel</a>
{% endif %}
</div> </div>
</fieldset> </fieldset>
</form> </form>