daily pastebin goal
81%
SHARE
TWEET

Untitled

a guest Oct 31st, 2013 36 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {% load comments i18n crispy_forms_tags fluent_comments_tags %}{% load url from future %}
  2.  
  3. {% if not form.target_object|comments_are_open %}
  4.     <p>{% trans "Comments are closed." %}</p>
  5. {% else %}
  6.     <form action="{% comment_form_target %}" method="post" class="js-comments-form comments-form form-horizontal"
  7.           data-ajax-action="{% url 'comments-post-comment-ajax' %}" a>{% csrf_token %}
  8.       {% if next %}<div><input type="hidden" name="next" value="{{ next }}" /></div>{% endif %}
  9.  
  10.       {{ form|crispy }}
  11.  
  12.       <div class="form-actions">
  13.         <input type="submit" name="post" class="btn btn-primary" value="{% trans "Post" %}" />
  14.         <input type="submit" name="preview" class="btn" value="{% trans "Preview" %}" />
  15.         {% ajax_comment_tags %}
  16.       </div>
  17.     </form>
  18. {% endif %}
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
 
Top