diaspora/app/assets/templates/feedback.jst.hbs
danielgrippi 699b0cff16 don't expose follow/unfollow to a user in the UI
following is good for bookkeeping in the database, but provides confusion, and could limit likes and/or commenting to start receiving notifications in a conversation.
2012-04-28 11:07:18 -07:00

35 lines
605 B
Handlebars
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<span class="post_scope grey">
{{#if public}}
{{t "stream.public"}}
{{else}}
{{t "stream.limited"}}
{{/if}}
{{#if provider_display_name}}
<strong>
via {{provider_display_name}}
</strong>
{{/if}}
</span>
<a href="#" class="like_action" rel='nofollow'>
{{#if user_like}}
{{t "stream.unlike"}}
{{else}}
{{t "stream.like"}}
{{/if}}
</a>
·
{{#if userCanReshare}}
<a href="#" class="reshare_action" rel='nofollow'>
{{t "stream.reshare"}}
</a>
·
{{/if}}
<a href="#" class="focus_comment_textarea" rel="nofollow">
{{t "stream.comment"}}
</a>