1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/views/accounts/show.html.erb

37 lines
1.1 KiB
Text
Raw Normal View History

2019-02-01 16:36:10 -05:00
<div class="container">
<div class="row">
<div class="col-md-3">
2019-03-23 19:59:38 -04:00
<% if @account.avatar.attached? %>
<%= image_tag @account.avatar, class: 'img-thumbnail mb-4' %>
<% end %>
<% if @account.public_name.present? %>
<h1><%= @account.public_name %></h1>
<% end %>
<p class="h3 text-muted"><%= @account.username %></p>
2019-03-24 15:04:39 -04:00
<div class="mb-2">
<i class="fas fa-user-tag"></i>
<% if @account.person&.party_member? %>
<%= translate :member, scope: %i[helpers person_status] %>
<% elsif @account.person&.party_supporter? %>
<%= translate :supporter, scope: %i[helpers person_status] %>
<% elsif @account.person&.excluded_from_party? %>
<%= translate :excluded, scope: %i[helpers person_status] %>
<% else %>
<%= translate :not_in_party, scope: %i[helpers person_status] %>
<% end %>
</div>
<% if @account.biography %>
<p><%= @account.biography %></p>
<% end %>
2019-02-01 16:36:10 -05:00
</div>
2019-02-01 16:36:10 -05:00
<div class="col-md-9">
</div>
</div>
</div>