mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 20:37:59 +01:00
25 lines
790 B
Text
25 lines
790 B
Text
h2
|
|
= link @user.name, to: Routes.profile_path(@conn, :show, @user)
|
|
| 's User Details
|
|
|
|
h4 Mod Notes
|
|
= render PhilomenaWeb.Admin.ModNoteView, "_table.html", mod_notes: @mod_notes, conn: @conn
|
|
= link "Add New Note", to: Routes.admin_mod_note_path(@conn, :new, notable_id: @user.id, notable_type: "User")
|
|
|
|
h4 Name History
|
|
table.table
|
|
thead
|
|
tr
|
|
th Name
|
|
th Changed
|
|
tbody
|
|
= for nc <- @name_changes do
|
|
tr
|
|
td = nc.name
|
|
td = pretty_time nc.created_at
|
|
|
|
h4 More Details
|
|
ul
|
|
li = link "IP Address Usage History", to: Routes.profile_ip_history_path(@conn, :index, @user)
|
|
li = link "Fingerprint Usage History", to: Routes.profile_fp_history_path(@conn, :index, @user)
|
|
li = link "Potential Aliases", to: Routes.profile_alias_path(@conn, :index, @user)
|