mirror of
https://github.com/wekan/wekan.git
synced 2025-09-22 01:50:48 +02:00

- All Boards page [so it's possible to go back from subtask board](https://github.com/wekan/wekan/issues/2082) - Board favorites - New Sandstorm board first user is Admin and [has IFTTT Rules](https://github.com/wekan/wekan/issues/2125) and Standalone Wekan Admin Panel. Probably some Admin Panel features do not work yet. Please keep backup of your grains before testig Admin Panel. - Linked Cards and Linked Boards. - Some not needed options like Logout etc have been hidden from top bar right menu. - [Import board now works. "Board not found" is not problem anymore](https://github.com/wekan/wekan/issues/1430), because you can go to All Boards page to change to imported board. and removes the following features: - Remove Welcome Board from Standalone Wekan, [to fix Welcome board not translated](https://github.com/wekan/wekan/issues/1601). Sandstorm Wekan does not have Welcome Board. Thanks to xet7 ! Closes #2125, closes #2082, closes #1430, closes #1601, related #2205, related #2070, related #1695, related #1192.
66 lines
2.2 KiB
Text
66 lines
2.2 KiB
Text
head
|
|
title Wekan
|
|
meta(name="viewport"
|
|
content="maximum-scale=1.0,width=device-width,initial-scale=1.0,user-scalable=0")
|
|
meta(http-equiv="X-UA-Compatible" content="IE=edge")
|
|
//- XXX We should use pathFor in the following `href` to support the case
|
|
where the application is deployed with a path prefix, but it seems to be
|
|
difficult to do that cleanly with Blaze -- at least without adding extra
|
|
packages.
|
|
link(rel="shortcut icon" href="/public/wekan-favicon.png")
|
|
link(rel="apple-touch-icon" href="/public/wekan-favicon.png")
|
|
link(rel="mask-icon" href="/public/wekan-150.svg")
|
|
link(rel="manifest" href="/public/wekan-manifest.json")
|
|
|
|
template(name="userFormsLayout")
|
|
section.auth-layout
|
|
if currentSetting.hideLogo
|
|
h1
|
|
br
|
|
br
|
|
else
|
|
h1.at-form-landing-logo
|
|
img(src="{{pathFor '/wekan-logo.png'}}" alt="Wekan")
|
|
section.auth-dialog
|
|
+Template.dynamic(template=content)
|
|
if currentSetting.displayAuthenticationMethod
|
|
+connectionMethod(authenticationMethod=currentSetting.defaultAuthenticationMethod)
|
|
div.at-form-lang
|
|
select.select-lang.js-userform-set-language
|
|
each languages
|
|
if isCurrentLanguage
|
|
option(value="{{tag}}" selected="selected") {{name}}
|
|
else
|
|
option(value="{{tag}}") {{name}}
|
|
|
|
template(name="defaultLayout")
|
|
+header
|
|
#content
|
|
| {{{afterBodyStart}}}
|
|
+Template.dynamic(template=content)
|
|
| {{{beforeBodyEnd}}}
|
|
if (Modal.isOpen)
|
|
#modal
|
|
.overlay
|
|
if (Modal.isWide)
|
|
.modal-content-wide.modal-container
|
|
a.modal-close-btn.js-close-modal
|
|
i.fa.fa-times-thin
|
|
+Template.dynamic(template=Modal.getHeaderName)
|
|
+Template.dynamic(template=Modal.getTemplateName)
|
|
else
|
|
.modal-content.modal-container
|
|
a.modal-close-btn.js-close-modal
|
|
i.fa.fa-times-thin
|
|
+Template.dynamic(template=Modal.getHeaderName)
|
|
+Template.dynamic(template=Modal.getTemplateName)
|
|
|
|
template(name="notFound")
|
|
+message(label='page-not-found')
|
|
|
|
template(name="message")
|
|
.big-message.quiet(class=color)
|
|
h1 {{_ label}}
|
|
unless currentUser
|
|
with(pathFor route='atSignIn')
|
|
p {{{_ 'page-maybe-private' this}}}
|