mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
52 lines
No EOL
2.4 KiB
HTML
52 lines
No EOL
2.4 KiB
HTML
{% load social_tags %}
|
|
|
|
<div class="NB-story-comments">
|
|
|
|
<div class="NB-comments-body">
|
|
{% for comment in story.friend_comments %}
|
|
{% render_story_comment story comment %}
|
|
{% endfor %}
|
|
|
|
{% if story.share_count_friends %}
|
|
<div class="NB-story-comments-shares">
|
|
{% for comment in story.friend_shares %}
|
|
{% render_story_comment story comment %}
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div class="NB-story-comment-edit NB-story-comment {% if story.shared_by_user %}NB-hidden{% endif %}" data-user-id="{{ user_social_profile.user_id }}">
|
|
<a href="{{ user_social_profile.blurblog_url }}" class="NB-user-avatar">
|
|
<img src="{% if user_social_profile.photo_url %}{{ user_social_profile.photo_url }}{% else %}{{ MEDIA_URL }}/img/circular/circular_avatar.png{% endif %}">
|
|
</a>
|
|
<div class="NB-story-comment-input-form">
|
|
<textarea class="NB-story-comment-input" placeholder="Comment on this story..."></textarea>
|
|
<div class="NB-story-comment-buttons">
|
|
<div class="NB-modal-submit-button NB-modal-submit-green NB-story-comment-save">Share this story</div>
|
|
<div class="NB-modal-submit-button NB-modal-submit-red NB-story-comment-delete NB-hidden">Delete</div>
|
|
<div class="NB-story-comment-crossposts">
|
|
<div class="NB-story-comment-crosspost-twitter NB-hidden"></div>
|
|
<div class="NB-story-comment-crosspost-facebook NB-hidden"></div>
|
|
<div class="NB-story-comment-crosspost-text"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="NB-story-comments-public">
|
|
{% if story.comment_count_public %}
|
|
<div class="NB-story-comments-public-header-wrapper {% if story.shared_by_user and not story.friend_comments %}NB-public-top{% endif %}">
|
|
<div class="NB-story-comments-public-header">
|
|
{{ story.comment_count_public }} public comment{{ story.comment_count_public|pluralize }}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% for comment in story.public_comments %}
|
|
{% render_story_comment story comment %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div> |