98755844a1
* Bind sessions to identities * Remove references to the identity token * Move email changes to identity * Move account menu into a turbo-frame * Create tenants from a tenanted route
53 lines
2.2 KiB
Plaintext
53 lines
2.2 KiB
Plaintext
<% @page_title = @user.name %>
|
|
|
|
<% content_for :header do %>
|
|
<%= render "my/menus/menu" %>
|
|
<% end %>
|
|
|
|
<div class="panel shadow center txt-align-center margin-block-end-double" style="--panel-size: 45ch;">
|
|
<div class="flex flex-column gap position-relative">
|
|
<% if Current.user == @user %>
|
|
<%= link_to edit_user_path(@user), class: "user-edit-link btn" do %>
|
|
<%= icon_tag "pencil" %>
|
|
<span class="for-screen-reader">Edit</span>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<div class="avatar txt-xx-large center fill-white btn--circle hide-focus-ring">
|
|
<%= image_tag user_avatar_path(@user), alt: "Profile avatar for #{@user.name}" %>
|
|
</div>
|
|
|
|
<div class="flex flex-column gap-half margin-block-end">
|
|
<h1 class="txt-x-large margin-none"><%= @user.name %></h1>
|
|
<div class="txt-medium">
|
|
<% if @user.active? %>
|
|
<%= mail_to @user.email_address %>
|
|
<% else %>
|
|
<%= @user.name %> is no longer on this account
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex-inline center justify-center flex-wrap gap">
|
|
<%= link_to "Which cards are assigned to #{ Current.user == @user ? "me" : @user.first_name }?", cards_path(assignee_ids: [@user.id], sorted_by: "newest"), class: "btn", data: { turbo_frame: "_top" } %>
|
|
<%= link_to "Which cards were added by #{ Current.user == @user ? "me" : @user.first_name }?", cards_path(creator_ids: [@user.id], sorted_by: "newest"), class: "btn", data: { turbo_frame: "_top" } %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<% if Current.user == @user %>
|
|
<div class="panel shadow center margin-block-double" style="--panel-size: 45ch;">
|
|
<%= render "users/transfer", user: @user %>
|
|
|
|
<div class="center margin-block-start-double">
|
|
<%= button_to session_url(script_name: nil), method: :delete, class: "btn btn--plain txt-link txt-small", data: { turbo: false } do %>
|
|
<span>Sign out</span>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
|
|
<h1 class="font-weight-black txt-large margin-block-double"><%= "What #{ Current.user == @user ? "have you" : "has #{ @user.first_name }" } been up to?" %></h1>
|
|
|
|
<%= render "users/activity_timeline", user: @user, day_timeline: @day_timeline, filter: @filter %>
|