Skip to content

Commit

Permalink
Fixed #9100 -- Added a missing CSS class to a submit button.
Browse files Browse the repository at this point in the history
Thanks, mordyovits and thejaswi_puthraya.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@9120 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
malcolmt committed Oct 5, 2008
1 parent 8524089 commit 645029a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/contrib/comments/templates/comments/preview.html
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ <h1>{% blocktrans count form.errors|length as counter %}Please correct the error
<h1>{% trans "Preview your comment" %}</h1> <h1>{% trans "Preview your comment" %}</h1>
<blockquote>{{ comment|linebreaks }}</blockquote> <blockquote>{{ comment|linebreaks }}</blockquote>
<p> <p>
{% trans "and" %} <input type="submit" name="submit" value="{% trans "Post your comment" %}" id="submit" /> {% trans "or make changes" %}: {% trans "and" %} <input type="submit" name="submit" class="submit-post" value="{% trans "Post your comment" %}" id="submit" /> {% trans "or make changes" %}:
</p> </p>
{% endif %} {% endif %}
{% for field in form %} {% for field in form %}
Expand Down

0 comments on commit 645029a

Please sign in to comment.