From 09241bd7a2a2ec6e1f022018f3f211558bcb22f9 Mon Sep 17 00:00:00 2001 From: Chris Lawton <chris.lawton@torchbox.com> Date: Fri, 2 Mar 2018 14:30:01 +0000 Subject: [PATCH] adding missing id, name and form attrs from comment form button --- .../apply/activity/templates/activity/include/comment_form.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentech/apply/activity/templates/activity/include/comment_form.html b/opentech/apply/activity/templates/activity/include/comment_form.html index 2dc4ff215..2db10184c 100644 --- a/opentech/apply/activity/templates/activity/include/comment_form.html +++ b/opentech/apply/activity/templates/activity/include/comment_form.html @@ -1,5 +1,5 @@ <form class="form form--comments" method="post" id="comment-form"> {% csrf_token %} {{ comment_form }} - <input id="comment-form-submit" name="form-submitted" type="submit" form="comment-form" value="Comment"> + <input id="comment-form-submit" name="form-submitted" form="comment-form" class="button button--primary" type="submit" value="Comment"> </form> -- GitLab