Files
nairobi/app/views/shared/_author_info.html.erb
Juanjo Bazán 2671b25ba6 makes author name a link to activity page
in debates/proposals/comments
2015-11-04 14:09:16 +01:00

26 lines
788 B
Plaintext

<%= avatar_image(resource.author, seed: resource.author_id, size: 32, class: 'author-photo') %>
<% if resource.author.hidden? || resource.author.erased? %>
<i class="icon-deleted author-deleted"></i>
<span class="author">
<%= t("shared.author_info.author_deleted") %>
</span>
<% else %>
<span class="author">
<%= link_to resource.author.name, user_path(resource.author) %>
</span>
<% if resource.author.official? %>
&nbsp;&bull;&nbsp;
<span class="label round level-<%= resource.author.official_level %>">
<%= resource.author.official_position %>
</span>
<% end %>
<% end %>
<% if resource.author.verified_organization? %>
&nbsp;&bull;&nbsp;
<span class="label round is-association">
<%= t("shared.collective") %>
</span>
<% end %>