lazuscripts-users/views/user_me.moon
Paul Liverman III 42e6672175 reinitialized
tl;dr: I am resetting the history in this repo to this point because I
accidentally was adding history from OTHER repos into this one due to
a bug in git subtree or a misunderstanding on my part
2018-03-02 10:45:36 -08:00

9 lines
240 B
Plaintext

import Widget from require "lapis.html"
class extends Widget
content: =>
p "Username: #{@user.name} (#{@user.id})"
p "Email Address: #{@user.email}"
p "Is admin? #{@user.admin}"
p -> a href: @url_for("user_edit"), "Edit"