Advertisement
Guest User

Untitled

a guest
Nov 19th, 2016
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.35 KB | None | 0 0
  1. {% extends 'content/carcass_page.html' %}
  2.  
  3. {% block content %}
  4.  
  5.     {% for post in object_list %}
  6.         <div class="panel panel-default">
  7.             <div class="panel-heading" id="main_page_header" data-id="{{ post.get_score_object_id}}">
  8.                 <h3>{{ post.title }}</h3>
  9.                 {{ post.created }}
  10.                 <p><span class="glyphicon glyphicon-eye-open"></span> {{ post.hitcount_set.count }}
  11.                     <a href="/rate/{{ post.get_score_object_id}}/+/">
  12.                         <span class="glyphicon glyphicon-thumbs-up" id="like" data-grade="+"></span>
  13.                     </a>
  14.                         <span class="total-likes">{{ post.get_positive_votes }}</span>
  15.                     <a href="/rate/{{ post.get_score_object_id}}/-/">
  16.                         <span class="glyphicon glyphicon-thumbs-down" id="like" data-grade="-"></span>
  17.                     </a>
  18.                         <span class="total-dislikes">{{ post.get_negative_votes }}</span>
  19.                 </p>
  20.             </div>
  21.             <div class="panel-body" id="main_page_body">
  22.                 <p>{{ post.title }}</p>
  23.                 <button type="button" class="btn btn-primary btn-md" onclick="location.href = '{{ post.get_absolute_url }}'">Читать далее</button>
  24.             </div>
  25.         </div>
  26.     {% endfor %}
  27.  
  28. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement