mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-30 21:49:22 +00:00
13 lines
481 B
HTML
13 lines
481 B
HTML
<div class="comment-submit-area well">
|
|
{% if request.user.is_authenticated %}
|
|
<div>
|
|
<textarea style="width: 85%" id="id-comment-text" cols="80" rows="3" name="new-comment"></textarea>
|
|
<button class="btn btn-primary" id="id-btn-add-comment">Add comment (don't be a dick)</button>
|
|
</div>
|
|
{% else %}
|
|
<h3>Please login to add comments</h3>
|
|
{% endif %}
|
|
</div>
|
|
<h3 class="bordered">Comments</h3>
|
|
<div id="comment-list-container"></div>
|