Advertisement
Guest User

Untitled

a guest
Apr 28th, 2017
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.61 KB | None | 0 0
  1. <section id="comment">
  2.         <div class="container">
  3.             <h3> Comments </h3> <hr><h4><a href="/games/{{game.id}}/{{game.slug}}/add_comment">Add Comment</a>
  4.             {% for comment in comments %}
  5.             <div class="row">
  6.             {% if request.user.is_authenticated %}
  7.             <a class="btn btn-default" href="/games/{{game.id}}/{{game.slug}}/add_comment/edit/{{c.id}}/"><span class="glyphicon glyphicon-pencil"></span></a>
  8.             {% endif %}
  9.             <p><span><em>{{comment.author}} </em></span></p>
  10.             <p><em> {{ comment.date_of_published }}</em></p>
  11.            
  12.              <pre>{{comment.content }} </pre>
  13.            
  14.             </div>
  15.            
  16.             {% endfor %}
  17.         </div>
  18.     </section>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement