Skip to content

Commit

Permalink
Dropping @readingplus.com, local TZ
Browse files Browse the repository at this point in the history
  • Loading branch information
etousley committed Sep 1, 2017
1 parent 57e756f commit cd63c0a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions views/contest/index.pug
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ block content
tr
td #{index + 1}
td #{team.name}
td #{team.captain}
td
a(href="/log/" + team.captain) #{team.captain.replace("@readingplus.com", "")}
td #{team.points}

.row
Expand All @@ -42,7 +43,7 @@ block content
td #{index + 1}

td
a(href="/log/" + user.name) #{user.name}
a(href="/log/" + user.name) #{user.name.replace("@readingplus.com", "")}
td #{user.team}
td #{user.points}
hr
Expand Down
4 changes: 2 additions & 2 deletions views/home.pug
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ block content
tbody
each entry in entriesToday
tr
td #{moment(entry.created).format('hh:mm a')}
td #{moment(entry.created).local().format('hh:mm a')}
td
a(href="/log/" + entry.user) #{entry.user}
a(href="/log/" + entry.user) #{entry.user.replace("@readingplus.com", "")}
td #{entry.activity}
td #{entry.points}

Expand Down

0 comments on commit cd63c0a

Please sign in to comment.