~chipaca/unity-lens-video/custom-user-agent

« back to all changes in this revision

Viewing changes to templates/main/elements/question_edit_form.html

  • Committer: Janos Gyerik
  • Date: 2012-03-04 14:26:04 UTC
  • Revision ID: janos@axiom-20120304142604-e0sokgf87l0ruqbi
input.btn and a.btn looked strange on the same line, so changed to button.btn where necessary

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
        <div class="form-actions">
34
34
            {% include 'main/elements/please_login.html' %}
35
 
            {% for action in form.actions %}<input type="submit" name="action" value="{{ action.name }}" class="btn {{ action.cssclass }}"/>{% endfor %}
36
 
            <a class="btn" href="{{ next_url }}">Cancel</a>
 
35
            {% for action in form.actions %}<button type="submit" name="action" class="btn {{ action.cssclass }}" value="{{ action.name }}">{{ action.name }}</button>{% endfor %}
 
36
            <button class="btn"><a href="{{ next_url }}">Cancel</a></button>
37
37
        </div>
38
38
    </div>
39
39
</form>