Wishlist refresh button
This commit is contained in:
parent
5cf6ad5d3e
commit
b13e255380
2 changed files with 16 additions and 4 deletions
|
@ -29,9 +29,10 @@ html(lang='en')
|
|||
div(style='margin-top: 1.5em;')
|
||||
section.section
|
||||
div.container.is-marginless.fullwidth
|
||||
if title
|
||||
h1= config.siteTitle + ' - ' + title
|
||||
else if title !== false
|
||||
h1 #{config.siteTitle}
|
||||
block title
|
||||
if title
|
||||
h1= config.siteTitle + ' - ' + title
|
||||
else if title !== false
|
||||
h1 #{config.siteTitle}
|
||||
include includes/messages.pug
|
||||
block content
|
||||
|
|
|
@ -1,5 +1,16 @@
|
|||
extends layout.pug
|
||||
|
||||
block title
|
||||
h1
|
||||
.level
|
||||
.level-left
|
||||
.level-item
|
||||
button.button.is-rounded(onclick='location.reload()')
|
||||
span.icon
|
||||
i.fas.fa-sync-alt
|
||||
.level-item
|
||||
span #{config.siteTitle} - #{title}
|
||||
|
||||
block content
|
||||
script(type='data/user_id')= req.user._id
|
||||
if process.env.TABLE !== 'false'
|
||||
|
|
Loading…
Reference in a new issue