Files @ 9158aff702ed
Branch filter:

Location: website/conservancy/usethesource/templates/usethesource/edit_comment_form.html

bsturmfels
usethesource: Fix typo in email signature
1
2
3
4
5
6
7
8
<form class="mb3" hx-target="this" hx-swap="outerHTML" hx-post="{% url 'usethesource:edit_comment' comment_id=comment.id %}">
  {% csrf_token %}
  {{ form.message }}
  <div class="mt2">
    <button type="submit" hx-get="{% url 'usethesource:view_comment' comment_id=comment.id show_add='false' %}" class="b pointer white bg-light-silver pv2 ph3" style="border: none">Cancel</button>
    {% include 'usethesource/save_button_partial.html' %}
  </div>
</form>