diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/templates/partials/item_list.html | 4 | ||||
-rw-r--r-- | web/templates/views/invoice.html (renamed from web/templates/invoice.html) | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/web/templates/partials/item_list.html b/web/templates/partials/item_list.html index f12a34a..6fdd1f9 100644 --- a/web/templates/partials/item_list.html +++ b/web/templates/partials/item_list.html @@ -1,6 +1,6 @@ -{{ define "partials/item_list.html.tmpl" }} +{{ define "partials/item_list.html" }} <div class="items"> - {{ range .Items }} + {{ range . }} {{ template "partials/item.html" .}} {{ end }} </div> diff --git a/web/templates/invoice.html b/web/templates/views/invoice.html index 77825fe..c8a3c70 100644 --- a/web/templates/invoice.html +++ b/web/templates/views/invoice.html @@ -10,6 +10,6 @@ <link rel="apple-touch-icon" href="/apple-touch-icon.png"> </head> <body> - {{ template "partials/item_list.html" .}} + {{ template "partials/item_list.html" .Invoice.Items }} </body> </html> |