11 lines
241 B
Elixir
11 lines
241 B
Elixir
|
defmodule BrightWeb.CartHTML do
|
||
|
use BrightWeb, :html
|
||
|
|
||
|
# this alias is for the html.heex templates
|
||
|
alias Bright.ShoppingCart
|
||
|
|
||
|
embed_templates "cart_html/*"
|
||
|
|
||
|
def currency_to_str(%Decimal{} = val), do: "$#{Decimal.round(val, 2)}"
|
||
|
end
|