Skip to content

Commit

Permalink
Costs
Browse files Browse the repository at this point in the history
  • Loading branch information
lpil committed Jul 11, 2024
1 parent d8594bd commit bfc6886
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions src/puck/routes.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,7 @@ fn dashboard_html(
"We don't make any money off this event. Please contribute what you can.
Recommended contributions:",
),
// TODO: re-add costs table
// event.costs_table(),
event.costs_table(),
p(
"If you cannot afford this much please get in touch. No one is excluded
from Midsummer.",
Expand Down
8 changes: 4 additions & 4 deletions src/puck/web/event.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -509,10 +509,10 @@ pub fn application_answers_list_html(user: User) -> List(html.Node(a)) {

pub fn costs_table() -> html.Node(a) {
html.table([], [
web.table_row("Low income", 60+"),
web.table_row("Median income", 80+"),
web.table_row("High income", 100+"),
web.table_row("Superstar 💖", 120+"),
web.table_row("Low income", 70+"),
web.table_row("Median income", 100+"),
web.table_row("High income", 120+"),
web.table_row("Superstar 💖", 160+"),
])
}

Expand Down

0 comments on commit bfc6886

Please sign in to comment.