2014-01-05 22:54:57 +00:00
<!DOCTYPE html>
2014-06-01 20:50:14 +00:00
<!--
2014-11-16 20:13:20 +00:00
// Copyright (C) 2014 The Syncthing Authors.
2014-09-29 19:43:32 +00:00
//
2015-03-07 20:36:35 +00:00
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
2017-02-09 06:52:18 +00:00
// You can obtain one at https://mozilla.org/MPL/2.0/.
2015-03-07 20:36:35 +00:00
2014-06-01 20:50:14 +00:00
-->
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< html lang = "en" ng-app = "syncthing" ng-controller = "SyncthingController" >
2014-01-05 22:54:57 +00:00
< head >
2017-07-15 09:54:37 +00:00
< meta charset = "utf-8" / >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge" / >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" / >
< meta name = "description" content = "" / >
< meta name = "author" content = "" / >
< link rel = "shortcut icon" href = "assets/img/favicon-{{syncthingStatus()}}.png" / >
< link rel = "mask-icon" href = "assets/img/safari-pinned-tab.svg" color = "#0882c8" / >
2014-04-09 21:00:23 +00:00
2015-07-20 09:18:48 +00:00
< title ng-bind = "thisDeviceName() + ' | Syncthing'" > < / title >
2017-07-15 09:54:37 +00:00
< link href = "vendor/bootstrap/css/bootstrap.css" rel = "stylesheet" / >
2018-05-24 18:59:32 +00:00
< link href = "vendor/daterangepicker/daterangepicker.css" rel = "stylesheet" / >
2017-07-15 09:54:37 +00:00
< link href = "assets/font/raleway.css" rel = "stylesheet" / >
2018-10-03 06:56:54 +00:00
< link href = "vendor/fork-awesome/css/fork-awesome.css" rel = "stylesheet" / >
< link href = "vendor/fork-awesome/css/v5-compat.css" rel = "stylesheet" / >
2017-07-15 09:54:37 +00:00
< link href = "assets/css/overrides.css" rel = "stylesheet" / >
< link href = "assets/css/theme.css" rel = "stylesheet" / >
2018-01-01 14:39:23 +00:00
< link href = "vendor/fancytree/css/ui.fancytree.css" rel = "stylesheet" / >
2014-01-05 22:54:57 +00:00
< / head >
2014-05-16 16:42:22 +00:00
< body >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< noscript >
< nav class = "navbar navbar-top navbar-default" role = "navigation" >
< div class = "container" >
< span class = "navbar-brand" aria-hidden = "true" >
< img class = "logo hidden-xs" src = "assets/img/logo-horizontal.svg" height = "32" width = "117" alt = "" / >
< img class = "logo hidden visible-xs" src = "assets/img/favicon-default.png" height = "32" alt = "" / >
< / span >
< / div >
< / nav >
2015-11-16 20:33:55 +00:00
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< div class = "container content" >
< div class = "row" >
< div class = "col-md-12" >
< div class = "panel panel-danger" >
< div class = "panel-heading" >
< h3 class = "panel-title" >
< div class = "panel-icon" >
< span class = "fas fa-exclamation-circle" > < / span >
< / div >
2020-11-09 08:46:45 +00:00
Warning!
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< / h3 >
< / div >
< div class = "panel-body" >
< p >
The Syncthing admin interface requires JavaScript. Please enable JavaScript in your web browser and try again.
< / p >
< / div >
2015-11-16 20:33:55 +00:00
< / div >
< / div >
< / div >
< / div >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< / noscript >
2015-11-16 20:33:55 +00:00
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< div class = "ng-cloak" >
< script type = "text/javascript" src = "syncthing/development/logbar.js" > < / script >
< div ng-if = "version.isBeta" ng-include = "'syncthing/development/logbar.html'" > < / div >
<!-- Top bar -->
2014-04-09 21:00:23 +00:00
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< nav class = "navbar navbar-top navbar-default" role = "navigation" >
< div class = "container" >
< span class = "navbar-brand" aria-hidden = "true" >
< img class = "logo hidden-xs" src = "assets/img/logo-horizontal.svg" height = "32" width = "117" alt = "" / >
< img class = "logo hidden visible-xs" src = "assets/img/favicon-default.png" height = "32" alt = "" / >
< / span >
< p class = "navbar-text hidden-xs" ng-class = "{'hidden-sm':upgradeInfo && upgradeInfo.newer}" > {{thisDeviceName()}}< / p >
< ul class = "nav navbar-nav navbar-right" >
< li ng-if = "upgradeInfo && upgradeInfo.newer" class = "upgrade-newer" >
< button type = "button" class = "btn navbar-btn btn-primary btn-sm" data-toggle = "modal" data-target = "#upgrade" >
< span class = "fas fa-arrow-circle-up" > < / span >
< span class = "hidden-xs" translate translate-value-version = "{{upgradeInfo.latest}}" > Upgrade To {%version%}< / span >
2015-08-10 09:22:37 +00:00
< / button >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< / li >
< li ng-if = "upgradeInfo && upgradeInfo.majorNewer" class = "upgrade-newer-major" >
< button type = "button" class = "btn navbar-btn btn-danger btn-sm" data-toggle = "modal" data-target = "#majorUpgrade" >
< span class = "fas fa-arrow-circle-up" > < / span >
< span class = "hidden-xs" translate translate-value-version = "{{upgradeInfo.latest}}" > Upgrade To {%version%}< / span >
< / button >
< / li >
< li class = "dropdown" language-select > < / li >
< li >
< a class = "navbar-link" href = "https://docs.syncthing.net/intro/gui.html" target = "_blank" >
< span class = "fas fa-question-circle" > < / span >
< span class = "hidden-xs" translate > Help< / span >
< / a >
< / li >
< li class = "dropdown action-menu" >
< a href = "#" class = "dropdown-toggle" data-toggle = "dropdown" aria-expanded = "false" >
< span class = "fas fa-cog" > < / span >
< span class = "hidden-xs" translate > Actions< / span >
< span class = "caret" > < / span >
< / a >
< ul class = "dropdown-menu" >
< li > < a href = "" ng-click = "showSettings()" > < span class = "fas fa-fw fa-cog" > < / span > < span translate > Settings< / span > < / a > < / li >
2021-06-01 16:04:11 +00:00
< li > < a href = "" ng-click = "showDeviceIdentification(thisDevice())" > < span class = "fas fa-fw fa-qrcode" > < / span > < span translate > Show ID< / span > < / a > < / li >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< li class = "divider" aria-hidden = "true" > < / li >
< li > < a href = "" ng-click = "shutdown()" > < span class = "fas fa-fw fa-power-off" > < / span > < span translate > Shutdown< / span > < / a > < / li >
< li > < a href = "" ng-click = "restart()" > < span class = "fas fa-fw fa-refresh" > < / span > < span translate > Restart< / span > < / a > < / li >
< li class = "divider" aria-hidden = "true" > < / li >
< li class = "visible-xs" >
< a href = "https://docs.syncthing.net/intro/gui.html" target = "_blank" >
< span class = "fas fa-fw fa-question-circle" > < / span > < span translate > Help< / span >
< / a >
< / li >
< li > < a href = "" data-toggle = "modal" data-target = "#about" > < span class = "far fa-fw fa-heart" > < / span > < span translate > About< / span > < / a > < / li >
< li class = "divider" aria-hidden = "true" > < / li >
< li > < a href = "" ng-click = "advanced()" > < span class = "fas fa-fw fa-cogs" > < / span > < span translate > Advanced< / span > < / a > < / li >
< li > < a href = "" ng-click = "logging.show()" > < span class = "far fa-fw fa-file-alt" > < / span > < span translate > Logs< / span > < / a > < / li >
< li class = "divider" aria-hidden = "true" ng-if = "config.gui.debugging" > < / li >
< li > < a href = "/rest/debug/support" target = "_blank" ng-if = "config.gui.debugging" > < span class = "fa fa-user-md" > < / span > < span translate > Support Bundle< / span > < / a > < / li >
< / ul >
< / li >
< / ul >
2014-04-09 21:00:23 +00:00
< / div >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< / nav >
2014-02-12 11:10:44 +00:00
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< div class = "container content" >
2015-01-23 15:28:30 +00:00
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
<!-- Panel: Open, no auth -->
2018-08-25 10:36:10 +00:00
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< div ng-if = "openNoAuth" class = "row" >
< div class = "col-md-12" >
< div class = "panel panel-danger" >
< div class = "panel-heading" >
< h3 class = "panel-title" >
< div class = "panel-icon" >
< span class = "fas fa-exclamation-circle" > < / span >
< / div >
< span translate > Danger!< / span >
< / h3 >
< / div >
< div class = "panel-body" >
< p >
< span translate > The Syncthing admin interface is configured to allow remote access without a password.< / span >
< b > < span translate > This can easily give hackers access to read and change any files on your computer.< / span > < / b >
< span translate > Please set a GUI Authentication User and Password in the Settings dialog.< / span >
< / p >
< / div >
< div class = "panel-footer" >
< button type = "button" class = "btn btn-sm btn-default pull-right" ng-click = "showSettings()" >
< span class = "fas fa-cog" > < / span > < span translate > Settings< / span >
< / button >
< div class = "clearfix" > < / div >
< / div >
< / div >
< / div >
< / div >
2018-08-25 10:36:10 +00:00
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
<!-- Panel: Restart Needed -->
2018-08-25 10:36:10 +00:00
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< div ng-if = "!configInSync" class = "row" >
2018-08-25 10:36:10 +00:00
< div class = "col-md-12" >
< div class = "panel panel-warning" >
< div class = "panel-heading" >
< h3 class = "panel-title" >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< div class = "panel-icon" >
< span class = "fas fa-exclamation-circle" > < / span >
< / div >
< span translate > Restart Needed< / span >
2018-08-25 10:36:10 +00:00
< / h3 >
< / div >
< div class = "panel-body" >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< p translate > The configuration has been saved but not activated. Syncthing must restart to activate the new configuration.< / p >
2018-08-25 10:36:10 +00:00
< / div >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< div class = "panel-footer" >
< button type = "button" class = "btn btn-sm btn-default pull-right" ng-click = "restart()" >
< span class = "fas fa-refresh" > < / span > < span translate > Restart< / span >
< / button >
< div class = "clearfix" > < / div >
2015-01-23 15:28:30 +00:00
< / div >
< / div >
< / div >
< / div >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< div ng-if = "config" >
<!-- Panel: Notifications -->
< div ng-if = "config.options && config.options.unackedNotificationIDs" ng-include = "'syncthing/core/notifications.html'" > < / div >
<!-- Panel: New Device -->
2020-12-17 18:54:31 +00:00
< div ng-repeat = "(deviceID, pendingDevice) in pendingDevices" class = "row" >
2018-08-25 10:36:10 +00:00
< div class = "col-md-12" >
< div class = "panel panel-warning" >
< div class = "panel-heading" >
< h3 class = "panel-title" >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< identicon class = "panel-icon" data-value = "device" > < / identicon >
< span translate > New Device< / span >
< span class = "pull-right" > {{ pendingDevice.time | date:"yyyy-MM-dd HH:mm:ss" }}< / span >
2018-08-25 10:36:10 +00:00
< / h3 >
< / div >
< div class = "panel-body" >
< p >
2020-12-17 18:54:31 +00:00
< span translate translate-value-device = "{{ deviceID }}" translate-value-address = "{{ pendingDevice.address }}" translate-value-name = "{{ pendingDevice.name }}" >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
Device "{%name%}" ({%device%} at {%address%}) wants to connect. Add new device?
2018-08-25 10:36:10 +00:00
< / span >
< / p >
< / div >
< div class = "panel-footer clearfix" >
< div class = "pull-right" >
2020-12-17 18:54:31 +00:00
< button type = "button" class = "btn btn-sm btn-success" ng-click = "addDevice(deviceID, pendingDevice.name)" >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< span class = "fas fa-plus" > < / span > < span translate > Add Device< / span >
2018-08-25 10:36:10 +00:00
< / button >
2021-06-07 08:29:24 +00:00
< button type = "button" class = "btn btn-sm btn-danger" ng-click = "ignoreDevice(deviceID, pendingDevice)" tooltip data-original-title = "{{'Permanently add it to the ignore list, suppressing further notifications.' | translate}}" >
2018-08-25 10:36:10 +00:00
< span class = "fas fa-times" > < / span > < span translate > Ignore< / span >
< / button >
2021-09-01 19:59:47 +00:00
< button type = "button" class = "btn btn-sm btn-default" ng-click = "dismissPendingDevice(deviceID)" tooltip data-original-title = "{{'Do not add it to the ignore list, so this notification may recur.' | translate}}" >
< span class = "far fa-clock" > < / span > < span translate > Dismiss< / span >
< / button >
2018-08-25 10:36:10 +00:00
< / div >
2016-06-02 23:21:19 +00:00
< / div >
2015-01-23 15:28:30 +00:00
< / div >
< / div >
< / div >
2018-08-25 10:36:10 +00:00
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
<!-- Panel: New Folder -->
2020-12-17 18:54:31 +00:00
< div ng-repeat = "(folderID, pendingFolder) in pendingFolders" >
< div ng-repeat = "(deviceID, offeringDevice) in pendingFolder.offeredBy" class = "row reject" >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< div class = "col-md-12" >
< div class = "panel panel-warning" >
< div class = "panel-heading" >
< h3 class = "panel-title" >
< div class = "panel-icon" >
< span class = "fas fa-folder" > < / span >
< / div >
2020-12-17 18:54:31 +00:00
< span translate ng-if = "!folders[folderID]" > New Folder< / span >
< span translate ng-if = "folders[folderID]" > Share Folder< / span >
< span class = "pull-right" > {{ offeringDevice.time | date:"yyyy-MM-dd HH:mm:ss" }}< / span >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< / h3 >
< / div >
< div class = "panel-body" >
< p >
2020-12-17 18:54:31 +00:00
< span ng-if = "offeringDevice.label.length == 0" translate translate-value-device = "{{ deviceName(devices[deviceID]) }}" translate-value-folder = "{{ folderID }}" >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
{%device%} wants to share folder "{%folder%}".
< / span >
2020-12-17 18:54:31 +00:00
< span ng-if = "offeringDevice.label.length != 0" translate translate-value-device = "{{ deviceName(devices[deviceID]) }}" translate-value-folder = "{{ folderID }}" translate-value-folderlabel = "{{ offeringDevice.label }}" >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
{%device%} wants to share folder "{%folderlabel%}" ({%folder%}).
< / span >
2020-12-17 18:54:31 +00:00
< span translate ng-if = "folders[folderID]" > Share this folder?< / span >
< span translate ng-if = "!folders[folderID]" > Add new folder?< / span >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< / p >
< / div >
< div class = "panel-footer clearfix" >
< div class = "pull-right" >
2021-02-12 21:51:29 +00:00
< button type = "button" class = "btn btn-sm btn-success" ng-click = "addFolderAndShare(folderID, pendingFolder, deviceID)" ng-if = "!folders[folderID]" >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< span class = "fas fa-check" > < / span > < span translate > Add< / span >
< / button >
2020-12-17 18:54:31 +00:00
< button type = "button" class = "btn btn-sm btn-success" ng-click = "shareFolderWithDevice(folderID, deviceID)" ng-if = "folders[folderID]" >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< span class = "fas fa-check" > < / span > < span translate > Share< / span >
< / button >
2021-06-07 08:29:24 +00:00
< button type = "button" class = "btn btn-sm btn-danger" ng-click = "ignoreFolder(deviceID, folderID, offeringDevice)" tooltip data-original-title = "{{'Permanently add it to the ignore list, suppressing further notifications.' | translate}}" >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< span class = "fas fa-times" > < / span > < span translate > Ignore< / span >
< / button >
2021-09-01 19:59:47 +00:00
< button type = "button" class = "btn btn-sm btn-default" ng-click = "dismissPendingFolder(folderID, deviceID)" tooltip data-original-title = "{{'Do not add it to the ignore list, so this notification may recur.' | translate}}" >
< span class = "far fa-clock" > < / span > < span translate > Dismiss< / span >
< / button >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< / div >
< / div >
2016-06-02 23:21:19 +00:00
< / div >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< / div >
2015-01-23 15:28:30 +00:00
< / div >
< / div >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
2015-01-23 15:28:30 +00:00
< / div >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
<!-- Panel: Notice -->
2018-06-11 13:47:54 +00:00
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< div ng-if = "errorList().length > 0" class = "row" >
< div class = "col-md-12" >
< div class = "panel panel-warning" >
< div class = "panel-heading" >
< h3 class = "panel-title" >
< div class = "panel-icon" >
< span class = "fas fa-exclamation-circle" > < / span >
< / div >
< span translate > Notice< / span >
< / h3 >
< / div >
< div class = "panel-body" >
< p ng-repeat = "err in errorList()" >
< small > {{err.when | date:"yyyy-MM-dd HH:mm:ss"}}:< / small >
< span ng-bind-html = "friendlyDevices(err.message) | linky: '_blank'" > < / span >
< / p >
< / div >
< div class = "panel-footer" >
< button type = "button" class = "btn btn-sm btn-default pull-right" ng-click = "clearErrors()" >
< span class = "fas fa-check" > < / span > < span translate > OK< / span >
< / button >
< div class = "clearfix" > < / div >
< / div >
2018-06-11 13:47:54 +00:00
< / div >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< / div >
< / div >
<!-- Panel: FS watcher errors -->
< div ng-if = "sizeOf(fsWatcherErrorMap()) > 0" class = "row" >
< div class = "col-md-12" >
< div class = "panel panel-warning" >
< div class = "panel-heading" >
< h3 class = "panel-title" >
< div class = "panel-icon" >
< span class = "fas fa-exclamation-circle" > < / span >
< / div >
< span translate > Filesystem Watcher Errors< / span >
< / h3 >
< / div >
< div class = "panel-body" >
< p >
< span translate > For the following folders an error occurred while starting to watch for changes. It will be retried every minute, so the errors might go away soon. If they persist, try to fix the underlying issue and ask for help if you can't.< / span >   < a href = "https://forum.syncthing.net" target = "_blank" > < span class = "fas fa-question-circle" > < / span > < span translate > Support< / span > < / a >
< / p >
< table >
< tr ng-repeat = "(id, err) in fsWatcherErrorMap()" >
< td > {{folderLabel(id)}}< / td > < td > {{err}}< / td >
< / tr >
< / table >
< / div >
2018-06-11 13:47:54 +00:00
< / div >
< / div >
< / div >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
<!-- First regular row -->
2014-04-09 21:00:23 +00:00
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< div class = "row" >
2014-04-09 21:00:23 +00:00
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
<!-- Folder list (top left) -->
2014-04-09 21:00:23 +00:00
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< div class = "col-md-6" aria-labelledby = "folder_list" role = "region" >
< h3 id = "folder_list" translate > Folders< / h3 >
< div class = "panel-group" id = "folders" >
< div class = "panel panel-default" ng-repeat = "folder in folderList()" >
< button class = "btn panel-heading" data-toggle = "collapse" data-parent = "#folders" data-target = "#folder-{{$index}}" aria-expanded = "false" >
< div class = "panel-progress" ng-show = "folderStatus(folder) == 'syncing'" ng-attr-style = "width: {{syncPercentage(folder.id) | percent}}" > < / div >
< div class = "panel-progress" ng-show = "folderStatus(folder) == 'scanning' && scanProgress[folder.id] != undefined" ng-attr-style = "width: {{scanPercentage(folder.id) | percent}}" > < / div >
< h4 class = "panel-title" >
< div class = "panel-icon hidden-xs" >
< span ng-if = "folder.type == 'sendreceive'" class = "fas fa-fw fa-folder" > < / span >
< span ng-if = "folder.type == 'sendonly'" class = "fas fa-fw fa-upload" > < / span >
< span ng-if = "folder.type == 'receiveonly'" class = "fas fa-fw fa-download" > < / span >
2021-04-13 08:12:56 +00:00
< span ng-if = "folder.type == 'receiveencrypted'" class = "fas fa-fw fa-lock" > < / span >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< / div >
< div class = "panel-status pull-right text-{{folderClass(folder)}}" ng-switch = "folderStatus(folder)" >
< span ng-switch-when = "paused" > < span class = "hidden-xs" translate > Paused< / span > < span class = "visible-xs" aria-label = "{{'Paused' | translate}}" > < i class = "fas fa-fw fa-pause" > < / i > < / span > < / span >
< span ng-switch-when = "unknown" > < span class = "hidden-xs" translate > Unknown< / span > < span class = "visible-xs" aria-label = "{{'Unknown' | translate}}" > < i class = "fas fa-fw fa-question-circle" > < / i > < / span > < / span >
< span ng-switch-when = "unshared" > < span class = "hidden-xs" translate > Unshared< / span > < span class = "visible-xs" aria-label = "{{'Unshared' | translate}}" > < i class = "fas fa-fw fa-unlink" > < / i > < / span > < / span >
< span ng-switch-when = "scan-waiting" > < span class = "hidden-xs" translate > Waiting to Scan< / span > < span class = "visible-xs" aria-label = "{{'Waiting to Scan' | translate}}" > < i class = "fas fa-fw fa-hourglass-half" > < / i > < / span > < / span >
< span ng-switch-when = "cleaning" > < span class = "hidden-xs" translate > Cleaning Versions< / span > < span class = "visible-xs" aria-label = "{{'Cleaning Versions' | translate}}" > < i class = "fas fa-fw fa-recycle" > < / i > < / span > < / span >
< span ng-switch-when = "clean-waiting" > < span class = "hidden-xs" translate > Waiting to Clean< / span > < span class = "visible-xs" aria-label = "{{'Waiting to Clean' | translate}}" > < i class = "fas fa-fw fa-hourglass-half" > < / i > < / span > < / span >
< span ng-switch-when = "stopped" > < span class = "hidden-xs" translate > Stopped< / span > < span class = "visible-xs" aria-label = "{{'Stopped' | translate}}" > < i class = "fas fa-fw fa-stop" > < / i > < / span > < / span >
< span ng-switch-when = "scanning" >
< span class = "hidden-xs" translate > Scanning< / span >
< span class = "hidden-xs" ng-if = "scanPercentage(folder.id) != undefined" >
({{scanPercentage(folder.id) | percent}})
< / span >
< span class = "visible-xs" aria-label = "{{'Scanning' | translate}}" > < i class = "fas fa-fw fa-search" > < / i > < / span >
2015-08-26 22:49:06 +00:00
< / span >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< span ng-switch-when = "idle" > < span class = "hidden-xs" translate > Up to Date< / span > < span class = "visible-xs" aria-label = "{{'Up to Date' | translate}}" > < i class = "fas fa-fw fa-check" > < / i > < / span > < / span >
< span ng-switch-when = "localadditions" > < span class = "hidden-xs" translate > Local Additions< / span > < span class = "visible-xs" aria-label = "{{'Local Additions' | translate}}" > < i class = "fas fa-fw fa-check" > < / i > < / span > < / span >
< span ng-switch-when = "sync-waiting" >
< span class = "hidden-xs" translate > Waiting to Sync< / span >
< span class = "visible-xs" aria-label = "{{'Waiting to Sync' | translate}}" > < i class = "fas fa-fw fa-hourglass-half" > < / i > < / span >
< / span >
< span ng-switch-when = "sync-preparing" >
< span class = "hidden-xs" translate > Preparing to Sync< / span >
< span class = "visible-xs" aria-label = "{{'Preparing to Sync' | translate}}" > < i class = "fas fa-fw fa-hourglass-half" > < / i > < / span >
< / span >
< span ng-switch-when = "syncing" >
< span class = "hidden-xs" translate > Syncing< / span >
< span > ({{syncPercentage(folder.id) | percent}}, {{model[folder.id].needBytes | binary}}B)< / span >
< / span >
< span ng-switch-when = "outofsync" > < span class = "hidden-xs" translate > Out of Sync< / span > < span class = "visible-xs" aria-label = "{{'Out of Sync' | translate}}" > < i class = "fas fa-fw fa-exclamation-circle" > < / i > < / span > < / span >
< span ng-switch-when = "faileditems" > < span class = "hidden-xs" translate > Failed Items< / span > < span class = "visible-xs" aria-label = "{{'Failed Items' | translate}}" > < i class = "fas fa-fw fa-exclamation-circle" > < / i > < / span > < / span >
2021-04-13 08:12:56 +00:00
< span ng-switch-when = "localunencrypted" > < span class = "hidden-xs" > {{'Unexpected Items' | translate}}< / span > < span class = "visible-xs" aria-label = "{{'Unexpected Items' | translate}}" > < i class = "fas fa-fw fa-exclamation-circle" > < / i > < / span > < / span >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< / div >
< div class = "panel-title-text" >
< span tooltip data-original-title = "{{folder.label.length != 0 ? folder.id : ''}}" > {{folder.label.length != 0 ? folder.label : folder.id}}< / span >
< / div >
< / h4 >
< / button >
< div id = "folder-{{$index}}" class = "panel-collapse collapse" >
< div class = "panel-body" >
< table class = "table table-condensed table-striped table-auto" >
< tbody >
< tr ng-show = "folder.label != undefined && folder.label.length > 0" >
< th > < span class = "fas fa-fw fa-info-circle" > < / span > < span translate > Folder ID< / span > < / th >
< td class = "text-right no-overflow-ellipse" > {{folder.id}}< / td >
< / tr >
< tr >
< th > < span class = "fas fa-fw fa-folder-open" > < / span > < span translate > Folder Path< / span > < / th >
< td class = "text-right" >
< span tooltip data-original-title = "{{folder.path}}" > {{folder.path}}< / span >
< / td >
< / tr >
< tr ng-if = "!folder.paused && (model[folder.id].invalid || model[folder.id].error)" >
< th > < span class = "fas fa-fw fa-exclamation-triangle" > < / span > < span translate > Error< / span > < / th >
< td class = "text-right" > {{model[folder.id].invalid || model[folder.id].error}}< / td >
< / tr >
< tr ng-if = "!folder.paused" >
< th > < span class = "fas fa-fw fa-globe" > < / span > < span translate > Global State< / span > < / th >
< td class = "text-right" >
< span tooltip data-original-title = "{{model[folder.id].globalFiles | alwaysNumber | localeNumber}} {{'files' | translate}}, {{model[folder.id].globalDirectories | alwaysNumber | localeNumber}} {{'directories' | translate}}, ~{{model[folder.id].globalBytes | binary}}B" >
< span class = "far fa-copy" > < / span > {{model[folder.id].globalFiles | alwaysNumber | localeNumber}} 
< span class = "far fa-folder" > < / span > {{model[folder.id].globalDirectories | alwaysNumber | localeNumber}} 
< span class = "far fa-hdd" > < / span > ~{{model[folder.id].globalBytes | binary}}B
2018-02-07 12:46:27 +00:00
< / span >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< / td >
< / tr >
< tr ng-if = "!folder.paused" >
< th > < span class = "fas fa-fw fa-home" > < / span > < span translate > Local State< / span > < / th >
< td class = "text-right" >
< span tooltip data-original-title = "{{model[folder.id].localFiles | alwaysNumber | localeNumber}} {{'files' | translate}}, {{model[folder.id].localDirectories | alwaysNumber | localeNumber}} {{'directories' | translate}}, ~{{model[folder.id].localBytes | binary}}B" >
< span class = "far fa-copy" > < / span > {{model[folder.id].localFiles | alwaysNumber | localeNumber}} 
< span class = "far fa-folder" > < / span > {{model[folder.id].localDirectories | alwaysNumber | localeNumber}} 
< span class = "far fa-hdd" > < / span > ~{{model[folder.id].localBytes | binary}}B<!-- get rid of the annoying trailing whitespace
-->< span ng-if = "model[folder.id].ignorePatterns" > < br / > < i > < small translate class = "text-muted" > Reduced by ignore patterns< / small > < / i > < / span >
2018-02-07 12:46:27 +00:00
< / span >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< / td >
< / tr >
< tr ng-if = "model[folder.id].needTotalItems > 0" >
< th > < span class = "fas fa-fw fa-cloud-download-alt" > < / span > < span translate > Out of Sync Items< / span > < / th >
< td class = "text-right" >
< a href = "" ng-click = "showNeed(folder.id)" > {{model[folder.id].needTotalItems | alwaysNumber | localeNumber}} < span translate > items< / span > , ~{{model[folder.id].needBytes | binary}}B< / a >
< / td >
< / tr >
< tr ng-if = "folderStatus(folder) === 'scanning' && scanRate(folder.id) > 0" >
< th > < span class = "fas fa-fw fa-hourglass-half" > < / span > < span translate > Scan Time Remaining< / span > < / th >
< td class = "text-right" >
< span tooltip data-original-title = "{{scanRate(folder.id) | binary}}B/s" > ~ {{scanRemaining(folder.id)}}< / span >
< / td >
< / tr >
< tr ng-if = "hasFailedFiles(folder.id)" >
< th > < span class = "fas fa-fw fa-exclamation-circle" > < / span > < span translate > Failed Items< / span > < / th >
<!-- Show the number of failed items as a link to bring up the list. -->
< td class = "text-right" >
< a href = "" ng-click = "showFailed(folder.id)" > {{model[folder.id].pullErrors | alwaysNumber | localeNumber}} < span translate > items< / span > < / a >
< / td >
< / tr >
2021-04-13 08:12:56 +00:00
< tr ng-if = "hasReceiveOnlyChanged(folder)" >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< th > < span class = "fas fa-fw fa-exclamation-circle" > < / span > < span translate > Locally Changed Items< / span > < / th >
< td class = "text-right" >
2021-04-13 08:12:56 +00:00
< a href = "" ng-click = "showLocalChanged(folder.id, folder.type)" > {{model[folder.id].receiveOnlyTotalItems | alwaysNumber | localeNumber}} < span translate > items< / span > , ~{{model[folder.id].receiveOnlyChangedBytes | binary}}B< / a >
< / td >
< / tr >
< tr ng-if = "hasReceiveEncryptedItems(folder)" >
< th > < span class = "fas fa-fw fa-exclamation-circle" > < / span > < span translate > Locally Changed Items< / span > < / th >
< td class = "text-right" >
< a href = "" ng-click = "showLocalChanged(folder.id, folder.type)" > {{receiveEncryptedItemsCount(folder) | alwaysNumber | localeNumber}} < span translate > items< / span > , ~{{model[folder.id].receiveOnlyChangedBytes | binary}}B< / a >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< / td >
< / tr >
< tr ng-if = "folder.type != 'sendreceive'" >
< th > < span class = "fas fa-fw fa-folder" > < / span > < span translate > Folder Type< / span > < / th >
< td class = "text-right" >
< span ng-if = "folder.type == 'sendonly'" translate > Send Only< / span >
< span ng-if = "folder.type == 'receiveonly'" translate > Receive Only< / span >
2021-04-13 08:12:56 +00:00
< span ng-if = "folder.type == 'receiveencrypted'" translate > Receive Encrypted< / span >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< / td >
< / tr >
< tr ng-if = "folder.ignorePerms" >
< th > < span class = "far fa-fw fa-minus-square" > < / span > < span translate > Ignore Permissions< / span > < / th >
< td class = "text-right" >
< span translate > Yes< / span >
< / td >
< / tr >
< tr >
< th > < span class = "fas fa-fw fa-refresh" > < / span > < span translate > Rescans< / span > < / th >
< td class = "text-right" >
< div ng-if = "folder.rescanIntervalS > 0" >
< span ng-if = "!folder.fsWatcherEnabled" tooltip data-original-title = "{{'Periodic scanning at given interval and disabled watching for changes' | translate}}" >
< span class = "far fa-clock" > < / span > {{folder.rescanIntervalS | duration}} 
< span class = "fas fa-eye-slash" > < / span > < span translate > Disabled< / span >
< / span >
< span ng-if = "folder.fsWatcherEnabled && (!model[folder.id].watchError || folder.paused || folderStatus(folder) === 'stopped')" tooltip data-original-title = "{{'Periodic scanning at given interval and enabled watching for changes' | translate}}" >
< span class = "far fa-clock" > < / span > {{folder.rescanIntervalS | duration}} 
< span class = "fas fa-eye" > < / span > < span translate > Enabled< / span >
< / span >
< span ng-if = "folder.fsWatcherEnabled && !folder.paused && folderStatus(folder) !== 'stopped' && model[folder.id].watchError" tooltip data-original-title = "{{'Periodic scanning at given interval and failed setting up watching for changes, retrying every 1m:' | translate}}<br/>{{model[folder.id].watchError}}" >
< span class = "far fa-clock" > < / span > {{folder.rescanIntervalS | duration}} 
< span class = "fas fa-eye-slash" > < / span > < span translate > Failed to setup, retrying< / span >
< / span >
< / div >
< div ng-if = "folder.rescanIntervalS <= 0" >
< span ng-if = "!folder.fsWatcherEnabled" tooltip data-original-title = "{{'Disabled periodic scanning and disabled watching for changes' | translate}}" >
< span class = "far fa-clock" > < / span > < span translate > Disabled< / span >  
< span class = "fas fa-eye-slash" > < / span > < span translate > Disabled< / span >
< / span >
< span ng-if = "folder.fsWatcherEnabled && (!model[folder.id].watchError || folder.paused || folderStatus(folder) === 'stopped')" tooltip data-original-title = "{{'Disabled periodic scanning and enabled watching for changes' | translate}}" >
< span class = "far fa-clock" > < / span > < span translate > Disabled< / span >  
< span class = "fas fa-eye" > < / span > < span translate > Enabled< / span >
< / span >
< span ng-if = "folder.fsWatcherEnabled && !folder.paused && folderStatus(folder) !== 'stopped' && model[folder.id].watchError" tooltip data-original-title = "{{'Disabled periodic scanning and failed setting up watching for changes, retrying every 1m:' | translate}}<br/>{{model[folder.id].watchError}}" >
< span class = "far fa-clock" > < / span > < span translate > Disabled< / span >  
< span class = "fas fa-eye-slash" > < / span > < span translate > Failed to setup, retrying< / span >
< / span >
< / div >
< / td >
< / tr >
< tr ng-if = "folder.order != 'random' && folder.type != 'sendonly'" >
< th > < span class = "fas fa-fw fa-sort" > < / span > < span translate > File Pull Order< / span > < / th >
< td class = "text-right" ng-switch = "folder.order" >
< span ng-switch-when = "random" translate > Random< / span >
< span ng-switch-when = "alphabetic" translate > Alphabetic< / span >
< span ng-switch-when = "smallestFirst" translate > Smallest First< / span >
< span ng-switch-when = "largestFirst" translate > Largest First< / span >
< span ng-switch-when = "oldestFirst" translate > Oldest First< / span >
< span ng-switch-when = "newestFirst" translate > Newest First< / span >
< / td >
< / tr >
< tr ng-if = "folder.versioning.type" >
< th > < span class = "far fa-fw fa-copy" > < / span > < span translate > File Versioning< / span > < / th >
< td class = "text-right" ng-switch = "folder.versioning.type" >
< span ng-switch-when = "trashcan" translate > Trash Can File Versioning< / span >
< span ng-switch-when = "staggered" translate > Staggered File Versioning< / span >
< span ng-switch-when = "simple" translate > Simple File Versioning< / span >
< span ng-switch-when = "external" translate > External File Versioning< / span >
< / td >
< / tr >
< tr >
< th > < span class = "fas fa-fw fa-share-alt" > < / span > < span translate > Shared With< / span > < / th >
< td class = "text-right" ng-attr-title = "{{sharesFolder(folder)}}" > {{sharesFolder(folder)}}< / td >
< / tr >
< tr ng-if = "folderStats[folder.id].lastScan" >
< th > < span class = "far fa-fw fa-clock" > < / span > < span translate > Last Scan< / span > < / th >
< td translate ng-if = "folderStats[folder.id].lastScanDays >= 365" class = "text-right" > Never< / td >
< td ng-if = "folderStats[folder.id].lastScanDays < 365" class = "text-right" >
< span > {{folderStats[folder.id].lastScan | date:'yyyy-MM-dd HH:mm:ss'}}< / span >
< / td >
< / tr >
2021-04-13 08:12:56 +00:00
< tr ng-if = "folder.type != 'sendonly' && folder.type != 'receiveencrypted' && folderStats[folder.id].lastFile && folderStats[folder.id].lastFile.filename" >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< th > < span class = "fas fa-fw fa-exchange-alt" > < / span > < span translate > Latest Change< / span > < / th >
< td class = "text-right" >
< span tooltip data-original-title = "{{folderStats[folder.id].lastFile.filename}} @ {{folderStats[folder.id].lastFile.at | date:'yyyy-MM-dd HH:mm:ss'}}" >
< span translate ng-if = "!folderStats[folder.id].lastFile.deleted" > Updated< / span >
< span translate ng-if = "folderStats[folder.id].lastFile.deleted" > Deleted< / span >
{{folderStats[folder.id].lastFile.filename | basename}}
2018-02-07 12:46:27 +00:00
< / span >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< / td >
< / tr >
< / tbody >
< / table >
< / div >
< div class = "panel-footer" >
2021-03-26 15:56:15 +00:00
< button type = "button" class = "btn btn-sm btn-danger pull-left" ng-click = "revertOverrideConfirmationModal('override', folder.id)" ng-if = "folderStatus(folder) == 'outofsync' && folder.type == 'sendonly'" >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< span class = "fas fa-arrow-circle-up" > < / span > < span translate > Override Changes< / span >
2015-08-10 09:22:37 +00:00
< / button >
2021-03-26 15:56:15 +00:00
< button type = "button" class = "btn btn-sm btn-danger pull-left" ng-click = "revertOverrideConfirmationModal('revert', folder.id)" ng-if = "hasReceiveOnlyChanged(folder)" >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< span class = "fa fa-arrow-circle-down" > < / span > < span translate > Revert Local Changes< / span >
2015-08-10 09:22:37 +00:00
< / button >
2021-04-13 08:12:56 +00:00
< button type = "button" class = "btn btn-sm btn-danger pull-left" ng-click = "revertOverrideConfirmationModal('deleteEnc', folder.id)" ng-if = "hasReceiveEncryptedItems(folder)" >
2021-08-03 09:46:20 +00:00
< span class = "fa fa-minus-circle" > < / span > < span translate > Delete Unexpected Items< / span >
2021-04-13 08:12:56 +00:00
< / button >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< span class = "pull-right" >
< button ng-if = "!folder.paused" type = "button" class = "btn btn-sm btn-default" ng-click = "setFolderPause(folder.id, true)" >
< span class = "fas fa-pause" > < / span > < span translate > Pause< / span >
< / button >
< button ng-if = "folder.paused" type = "button" class = "btn btn-sm btn-default" ng-click = "setFolderPause(folder.id, false)" >
< span class = "fas fa-play" > < / span > < span translate > Resume< / span >
< / button >
2021-04-29 16:34:08 +00:00
< button type = "button" class = "btn btn-default btn-sm" ng-click = "restoreVersions.show(folder.id)" ng-if = "folder.versioning.type && folder.versioning.type != 'external'" ng-disabled = "folder.paused" >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< span class = "fas fa-undo" > < / span > < span translate > Versions< / span >
< / button >
< button type = "button" class = "btn btn-sm btn-default" ng-click = "rescanFolder(folder.id)" ng-disabled = "['idle', 'stopped', 'unshared', 'outofsync', 'faileditems', 'localadditions'].indexOf(folderStatus(folder)) < 0" >
< span class = "fas fa-refresh" > < / span > < span translate > Rescan< / span >
< / button >
2021-02-04 20:10:41 +00:00
< button type = "button" class = "btn btn-sm btn-default" ng-click = "editFolderExisting(folder)" >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< span class = "fas fa-pencil-alt" > < / span > < span translate > Edit< / span >
< / button >
< / span >
< div class = "clearfix" > < / div >
< / div >
2014-05-24 19:56:09 +00:00
< / div >
2014-05-20 17:36:37 +00:00
< / div >
2014-04-09 21:00:23 +00:00
< / div >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< span class = "pull-right" >
< button type = "button" class = "btn btn-sm btn-default" ng-click = "setAllFoldersPause(true)" ng-if = "isAtleastOneFolderPausedStateSetTo(false)" >
< span class = "fas fa-pause" > < / span > < span translate > Pause All< / span >
< / button >
< button type = "button" class = "btn btn-sm btn-default" ng-click = "setAllFoldersPause(false)" ng-if = "isAtleastOneFolderPausedStateSetTo(true)" >
< span class = "fas fa-play" > < / span > < span translate > Resume All< / span >
< / button >
2021-02-17 17:02:55 +00:00
< button type = "button" class = "btn btn-sm btn-default" ng-click = "rescanAllFolders()" ng-if = "folderList().length > 0" ng-disabled = "!isAtleastOneFolderPausedStateSetTo(false)" >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< span class = "fas fa-refresh" > < / span > < span translate > Rescan All< / span >
< / button >
< button type = "button" class = "btn btn-sm btn-default" ng-click = "addFolder()" >
< span class = "fas fa-plus" > < / span > < span translate > Add Folder< / span >
< / button >
< / span >
< div class = "clearfix" > < / div >
< hr class = "visible-sm" / >
2014-02-12 11:10:44 +00:00
< / div >
2014-01-05 22:54:57 +00:00
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
<!-- Device list (top right) -->
2014-04-09 21:00:23 +00:00
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
<!-- This device -->
2014-09-10 09:27:21 +00:00
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< div class = "col-md-6" aria-label = "{{'Devices' | translate}}" role = "region" >
< h3 translate > This Device< / h3 >
< div class = "panel panel-default" ng-repeat = "deviceCfg in [thisDevice()]" >
< button class = "btn panel-heading" data-toggle = "collapse" data-target = "#device-this" aria-expanded = "true" >
2016-03-22 20:53:56 +00:00
< h4 class = "panel-title" >
2016-06-02 23:21:19 +00:00
< identicon class = "panel-icon" data-value = "deviceCfg.deviceID" > < / identicon >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< div class = "panel-title-text" > {{deviceName(deviceCfg)}}< / div >
2016-03-22 20:53:56 +00:00
< / h4 >
2016-06-08 15:55:44 +00:00
< / button >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< div id = "device-this" class = "panel-collapse collapse in" >
2014-05-24 19:56:09 +00:00
< div class = "panel-body" >
2019-04-18 16:35:44 +00:00
< table class = "table table-condensed table-striped table-auto" >
2014-09-10 09:27:21 +00:00
< tbody >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< tr >
2018-05-24 18:59:32 +00:00
< th > < span class = "fas fa-fw fa-cloud-download-alt" > < / span > < span translate > Download Rate< / span > < / th >
2017-04-06 08:42:45 +00:00
< td class = "text-right" >
< a href = "#" class = "toggler" ng-click = "toggleUnits()" >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< span ng-if = "!metricRates" > {{connectionsTotal.inbps | binary}}B/s< / span >
< span ng-if = "metricRates" > {{connectionsTotal.inbps*8 | metric}}bps< / span >
({{connectionsTotal.inBytesTotal | binary}}B)
< small ng-if = "config.options.maxRecvKbps > 0" > < br / >
2018-11-22 09:59:04 +00:00
< i class = "text-muted" > < span translate > Limit< / span > :
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< span ng-if = "!metricRates" > {{config.options.maxRecvKbps*1024 | binary}}B/s< / span >
< span ng-if = "metricRates" > {{config.options.maxRecvKbps*1024*8 | metric}}bps< / span >
2018-11-22 09:59:04 +00:00
< / i >
< / small >
2017-04-06 08:42:45 +00:00
< / a >
< / td >
2014-09-10 09:27:21 +00:00
< / tr >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< tr >
2018-05-24 18:59:32 +00:00
< th > < span class = "fas fa-fw fa-cloud-upload-alt" > < / span > < span translate > Upload Rate< / span > < / th >
2017-04-06 08:42:45 +00:00
< td class = "text-right" >
< a href = "#" class = "toggler" ng-click = "toggleUnits()" >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< span ng-if = "!metricRates" > {{connectionsTotal.outbps | binary}}B/s< / span >
< span ng-if = "metricRates" > {{connectionsTotal.outbps*8 | metric}}bps< / span >
({{connectionsTotal.outBytesTotal | binary}}B)
< small ng-if = "config.options.maxSendKbps > 0" > < br / >
2018-11-22 09:59:04 +00:00
< i class = "text-muted" > < span translate > Limit< / span > :
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< span ng-if = "!metricRates" > {{config.options.maxSendKbps*1024 | binary}}B/s< / span >
< span ng-if = "metricRates" > {{config.options.maxSendKbps*1024*8 | metric}}bps< / span >
2018-11-22 09:59:04 +00:00
< / i >
< / small >
2017-04-06 08:42:45 +00:00
< / a >
< / td >
2014-09-10 09:27:21 +00:00
< / tr >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< tr >
< th > < span class = "fas fa-fw fa-home" > < / span > < span translate > Local State (Total)< / span > < / th >
2017-12-15 20:01:56 +00:00
< td class = "text-right" >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< span tooltip data-original-title = "{{localStateTotal.files | alwaysNumber | localeNumber}} {{'files' | translate}}, {{ localStateTotal.directories | alwaysNumber | localeNumber}} {{'directories' | translate}}, ~{{ localStateTotal.bytes | binary}}B" >
< span class = "far fa-copy" > < / span > {{localStateTotal.files | alwaysNumber | localeNumber}} 
< span class = "far fa-folder" > < / span > {{localStateTotal.directories| alwaysNumber | localeNumber}} 
< span class = "far fa-hdd" > < / span > ~{{localStateTotal.bytes | binary}}B
< / span >
2017-12-15 20:01:56 +00:00
< / td >
< / tr >
2016-06-26 10:47:23 +00:00
< tr >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< th > < span class = "fas fa-fw fa-sitemap" > < / span > < span translate > Listeners< / span > < / th >
< td class = "text-right" >
2021-06-07 07:08:44 +00:00
< span class = "data" tooltip data-original-title = "{{'Show detailed listener status' | translate}}." >
2021-06-21 19:44:28 +00:00
< a href = "" ng-class = "{'text-success': listenersFailed.length == 0, 'text-danger': listenersFailed.length == listenersTotal}" ng-click = "showListenerStatus()" >
2021-06-07 07:08:44 +00:00
{{listenersTotal-listenersFailed.length}}/{{listenersTotal}}
< / a >
2019-05-16 21:11:46 +00:00
< / span >
2016-06-26 10:47:23 +00:00
< / td >
2016-05-04 19:38:12 +00:00
< / tr >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< tr ng-if = "system.discoveryEnabled" >
< th > < span class = "fas fa-fw fa-map-signs" > < / span > < span translate > Discovery< / span > < / th >
2015-02-23 08:44:10 +00:00
< td class = "text-right" >
2021-06-07 07:08:44 +00:00
< span class = "data" tooltip data-original-title = "{{'Show detailed discovery status' | translate}}." >
2021-06-21 19:44:28 +00:00
< a href = "" ng-class = "{'text-success': discoveryFailed.length == 0, 'text-danger': discoveryFailed.length == discoveryTotal}" ng-click = "showDiscoveryStatus()" >
2021-06-07 07:08:44 +00:00
{{discoveryTotal-discoveryFailed.length}}/{{discoveryTotal}}
< / a >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< / span >
2015-02-23 08:44:10 +00:00
< / td >
2014-09-10 09:27:21 +00:00
< / tr >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< tr >
< th > < span class = "far fa-fw fa-clock" > < / span > < span translate > Uptime< / span > < / th >
< td class = "text-right" > {{system.uptime | duration:"m"}}< / td >
2016-12-20 20:37:19 +00:00
< / tr >
2021-06-01 16:04:11 +00:00
< tr >
< th > < span class = "fas fa-fw fa-qrcode" > < / span > < span translate > Identification< / span > < / th >
< td class = "text-right" >
< span tooltip data-original-title = "{{'Click to see full identification string and QR code.' | translate}}" >
< a href = "" ng-click = "showDeviceIdentification(thisDevice())" > {{deviceShortID(deviceCfg.deviceID)}}< / a >
< / span >
< / td >
< / tr >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< tr >
2018-05-24 18:59:32 +00:00
< th > < span class = "fas fa-fw fa-tag" > < / span > < span translate > Version< / span > < / th >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< td class = "text-right" >
< span tooltip data-original-title = "{{versionString()}}" > {{versionString()}}< / span >
< / td >
2014-11-29 08:42:16 +00:00
< / tr >
2014-09-10 09:27:21 +00:00
< / tbody >
< / table >
< / div >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< / div >
< / div >
<!-- Remote devices -->
< h3 translate > Remote Devices< / h3 >
< div class = "panel-group" id = "devices" >
< div class = "panel panel-default" ng-repeat = "deviceCfg in otherDevices()" >
< button class = "btn panel-heading" data-toggle = "collapse" data-parent = "#devices" data-target = "#device-{{$index}}" aria-expanded = "false" >
< div class = "panel-progress" ng-show = "deviceStatus(deviceCfg) == 'syncing'" ng-attr-style = "width: {{completion[deviceCfg.deviceID]._total | percent}}" > < / div >
< h4 class = "panel-title" >
< identicon class = "panel-icon" data-value = "deviceCfg.deviceID" > < / identicon >
< span ng-switch = "deviceStatus(deviceCfg)" class = "pull-right text-{{deviceClass(deviceCfg)}}" >
< span ng-switch-when = "insync" > < span class = "hidden-xs" translate > Up to Date< / span > < span class = "visible-xs" aria-label = "{{'Up to Date' | translate}}" > < i class = "fas fa-fw fa-check" > < / i > < / span > < / span >
< span ng-switch-when = "unused-insync" > < span class = "hidden-xs" translate > Connected (Unused)< / span > < span class = "visible-xs" aria-label = "{{'Connected (Unused)' | translate}}" > < i class = "fas fa-fw fa-unlink" > < / i > < / span > < / span >
< span ng-switch-when = "syncing" >
< span class = "hidden-xs" translate > Syncing< / span > ({{completion[deviceCfg.deviceID]._total | percent}}, {{completion[deviceCfg.deviceID]._needBytes | binary}}B)
< / span >
< span ng-switch-when = "paused" > < span class = "hidden-xs" translate > Paused< / span > < span class = "visible-xs" aria-label = "{{'Paused' | translate}}" > < i class = "fas fa-fw fa-pause" > < / i > < / span > < / span >
< span ng-switch-when = "unused-paused" > < span class = "hidden-xs" translate > Paused (Unused)< / span > < span class = "visible-xs" aria-label = "{{'Paused (Unused)' | translate}}" > < i class = "fas fa-fw fa-unlink" > < / i > < / span > < / span >
< span ng-switch-when = "disconnected" > < span class = "hidden-xs" translate > Disconnected< / span > < span class = "visible-xs" aria-label = "{{'Disconnected' | translate}}" > < i class = "fas fa-fw fa-power-off" > < / i > < / span > < / span >
< span ng-switch-when = "unused-disconnected" > < span class = "hidden-xs" translate > Disconnected (Unused)< / span > < span class = "visible-xs" aria-label = "{{'Disconnected (Unused)' | translate}}" > < i class = "fas fa-fw fa-unlink" > < / i > < / span > < / span >
< / span >
2021-04-28 16:11:05 +00:00
< div class = "panel-title-text" > {{deviceName(deviceCfg)}}< / div >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< / h4 >
< / button >
< div id = "device-{{$index}}" class = "panel-collapse collapse" >
< div class = "panel-body" >
< table class = "table table-condensed table-striped table-auto" >
< tbody >
2021-02-20 10:26:34 +00:00
< tr ng-if = "!connections[deviceCfg.deviceID].connected" >
< th > < span class = "fas fa-fw fa-eye" > < / span > < span translate > Last seen< / span > < / th >
< td translate ng-if = "!deviceStats[deviceCfg.deviceID].lastSeenDays || deviceStats[deviceCfg.deviceID].lastSeenDays >= 365" class = "text-right" > Never< / td >
< td ng-if = "deviceStats[deviceCfg.deviceID].lastSeenDays < 365" class = "text-right" > {{deviceStats[deviceCfg.deviceID].lastSeen | date:"yyyy-MM-dd HH:mm:ss"}}< / td >
< / tr >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< tr ng-if = "connections[deviceCfg.deviceID].connected" >
< th > < span class = "fas fa-fw fa-cloud-download-alt" > < / span > < span translate > Download Rate< / span > < / th >
< td class = "text-right" >
< a href = "#" class = "toggler" ng-click = "toggleUnits()" >
< span ng-if = "!metricRates" > {{connections[deviceCfg.deviceID].inbps | binary}}B/s< / span >
< span ng-if = "metricRates" > {{connections[deviceCfg.deviceID].inbps*8 | metric}}bps< / span >
({{connections[deviceCfg.deviceID].inBytesTotal | binary}}B)
< small ng-if = "deviceCfg.maxRecvKbps > 0" > < br / >
< i class = "text-muted" > < span translate > Limit< / span > :
< span ng-if = "!metricRates" > {{deviceCfg.maxRecvKbps*1024 | binary}}B/s< / span >
< span ng-if = "metricRates" > {{deviceCfg.maxRecvKbps*1024*8 | metric}}bps< / span >
< / i >
< / small >
< / a >
< / td >
< / tr >
< tr ng-if = "connections[deviceCfg.deviceID].connected" >
< th > < span class = "fas fa-fw fa-cloud-upload-alt" > < / span > < span translate > Upload Rate< / span > < / th >
< td class = "text-right" >
< a href = "#" class = "toggler" ng-click = "toggleUnits()" >
< span ng-if = "!metricRates" > {{connections[deviceCfg.deviceID].outbps | binary}}B/s< / span >
< span ng-if = "metricRates" > {{connections[deviceCfg.deviceID].outbps*8 | metric}}bps< / span >
({{connections[deviceCfg.deviceID].outBytesTotal | binary}}B)
< small ng-if = "deviceCfg.maxSendKbps > 0" > < br / >
< i class = "text-muted" > < span translate > Limit< / span > :
< span ng-if = "!metricRates" > {{deviceCfg.maxSendKbps*1024 | binary}}B/s< / span >
< span ng-if = "metricRates" > {{deviceCfg.maxSendKbps*1024*8 | metric}}bps< / span >
< / i >
< / small >
< / a >
< / td >
< / tr >
< tr ng-if = "deviceStatus(deviceCfg) == 'syncing'" >
< th > < span class = "fas fa-fw fa-exchange-alt" > < / span > < span translate > Out of Sync Items< / span > < / th >
< td class = "text-right" >
< a href = "" ng-click = "showRemoteNeed(deviceCfg)" > {{completion[deviceCfg.deviceID]._needItems | alwaysNumber | localeNumber}} < span translate > items< / span > , ~{{completion[deviceCfg.deviceID]._needBytes | binary}}B< / a >
< / td >
< / tr >
< tr >
< th > < span class = "fas fa-fw fa-link" > < / span > & nbsp< span translate > Address< / span > < / th >
< td ng-if = "connections[deviceCfg.deviceID].connected" class = "text-right" >
< span tooltip data-original-title = "{{ connections[deviceCfg.deviceID].type.indexOf('Relay') > -1 ? '' : connections[deviceCfg.deviceID].type }} {{ connections[deviceCfg.deviceID].crypto }}" >
{{deviceAddr(deviceCfg)}}
< / span >
< / td >
< td ng-if = "!connections[deviceCfg.deviceID].connected" class = "text-right" >
< span ng-repeat = "addr in deviceCfg.addresses" >
2021-04-13 08:12:56 +00:00
< span tooltip data-original-title = "{{'Configured' | translate}}" > {{addr}}< / span > < br >
< small ng-if = "system.lastDialStatus[addr].error" tooltip data-original-title = "{{system.lastDialStatus[addr].error}}" class = "text-danger" > {{abbreviatedError(addr)}}< br > < / small >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< / span >
< span ng-repeat = "addr in discoveryCache[deviceCfg.deviceID].addresses" >
< span tooltip data-original-title = "{{'Discovered' | translate}}" > {{addr}}< / span > < br >
< small ng-if = "system.lastDialStatus[addr].error" tooltip data-original-title = "{{system.lastDialStatus[addr].error}}" class = "text-danger" > {{abbreviatedError(addr)}}< br > < / small >
< / span >
< / td >
< / tr >
< tr ng-if = "connections[deviceCfg.deviceID].connected && connections[deviceCfg.deviceID].type.indexOf('Relay') > -1" tooltip data-original-title = "Connections via relays might be rate limited by the relay" >
< th > < span class = "fas fa-fw fa-exclamation-triangle text-danger" > < / span > < span translate > Connection Type< / span > < / th >
< td class = "text-right" > {{connections[deviceCfg.deviceID].type}}< / td >
< / tr >
< tr ng-if = "deviceCfg.allowedNetworks.length > 0" >
< th > < span class = "fas fa-fw fa-filter" > < / span > < span translate > Allowed Networks< / span > < / th >
< td class = "text-right" >
< span > {{deviceCfg.allowedNetworks.join(", ")}}< / span >
< / td >
< / tr >
< tr ng-if = "deviceCfg.compression != 'metadata'" >
< th > < span class = "fas fa-fw fa-compress" > < / span > < span translate > Compression< / span > < / th >
< td class = "text-right" >
< span ng-if = "deviceCfg.compression == 'always'" translate > All Data< / span >
< span ng-if = "deviceCfg.compression == 'never'" translate > Off< / span >
< / td >
< / tr >
< tr ng-if = "deviceCfg.introducer" >
< th > < span class = "far fa-fw fa-thumbs-up" > < / span > < span translate > Introducer< / span > < / th >
< td translate class = "text-right" > Yes< / td >
< / tr >
< tr ng-if = "deviceCfg.introducedBy" >
< th > < span class = "far fa-fw fa-handshake-o" > < / span > < span translate > Introduced By< / span > < / th >
< td class = "text-right" > {{ deviceName(devices[deviceCfg.introducedBy]) || deviceCfg.introducedBy.substring(0, 5) }}< / td >
< / tr >
2021-06-01 16:04:11 +00:00
< tr >
< th > < span class = "fas fa-fw fa-qrcode" > < / span > < span translate > Identification< / span > < / th >
< td class = "text-right" >
< span tooltip data-original-title = "{{'Click to see full identification string and QR code.' | translate}}" >
< a href = "" ng-click = "showDeviceIdentification(deviceCfg)" > {{deviceShortID(deviceCfg.deviceID)}}< / a >
< / span >
< / td >
< / tr >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< tr ng-if = "connections[deviceCfg.deviceID].clientVersion" >
< th > < span class = "fas fa-fw fa-tag" > < / span > < span translate > Version< / span > < / th >
< td class = "text-right" > {{connections[deviceCfg.deviceID].clientVersion}}< / td >
< / tr >
< tr ng-if = "deviceFolders(deviceCfg).length > 0" >
< th > < span class = "fas fa-fw fa-folder" > < / span > < span translate > Folders< / span > < / th >
< td class = "text-right" ng-attr-title = "{{deviceFolders(deviceCfg).map(folderLabel).join(', ')}}" > {{deviceFolders(deviceCfg).map(folderLabel).join(", ")}}< / td >
< / tr >
2020-11-10 08:24:11 +00:00
< tr ng-if = "deviceCfg.remoteGUIPort > 0" >
< th > < span class = "fas fa-fw fa-desktop" > < / span > < span translate > Remote GUI< / span > < / th >
< td class = "text-right" ng-attr-title = "Port {{deviceCfg.remoteGUIPort}}" >
<!-- Apply RFC6874 encoding for IPv6 link - local zone identifier -->
2020-11-24 21:07:22 +00:00
< a ng-if = "hasRemoteGUIAddress(deviceCfg)" href = "{{remoteGUIAddress(deviceCfg).replace('%', '%25')}}" > {{remoteGUIAddress(deviceCfg)}}< / a >
< span translate ng-if = "!hasRemoteGUIAddress(deviceCfg)" > Unknown< / span >
2020-11-10 08:24:11 +00:00
< / td >
< / tr >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< / tbody >
< / table >
< / div >
< div class = "panel-footer" >
< span class = "pull-right" >
< button ng-if = "!deviceCfg.paused" type = "button" class = "btn btn-sm btn-default" ng-click = "setDevicePause(deviceCfg.deviceID, true)" >
< span class = "fas fa-pause" > < / span > < span translate > Pause< / span >
< / button >
< button ng-if = "deviceCfg.paused" type = "button" class = "btn btn-sm btn-default" ng-click = "setDevicePause(deviceCfg.deviceID, false)" >
< span class = "fas fa-play" > < / span > < span translate > Resume< / span >
< / button >
2021-02-04 20:10:41 +00:00
< button type = "button" class = "btn btn-sm btn-default" ng-click = "editDeviceExisting(deviceCfg)" >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< span class = "fas fa-pencil-alt" > < / span > < span translate > Edit< / span >
< / button >
< / span >
< div class = "clearfix" > < / div >
< / div >
2014-05-24 19:56:09 +00:00
< / div >
2014-05-20 17:36:37 +00:00
< / div >
2014-04-09 21:00:23 +00:00
< / div >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< div class = "form-group" >
< span class = "pull-right" >
< button type = "button" class = "btn btn-sm btn-default" ng-click = "setAllDevicesPause(true)" ng-if = "isAtleastOneDevicePausedStateSetTo(false)" >
< span class = "fas fa-pause" > < / span > < span translate > Pause All< / span >
< / button >
< button type = "button" class = "btn btn-sm btn-default" ng-click = "setAllDevicesPause(false)" ng-if = "isAtleastOneDevicePausedStateSetTo(true)" >
< span class = "fas fa-play" > < / span > < span translate > Resume All< / span >
< / button >
< button type = "button" class = "btn btn-sm btn-default" ng-click = "globalChanges()" >
< span class = "fas fa-fw fa-info-circle" > < / span > < span translate > Recent Changes< / span >
< / button >
< button type = "button" class = "btn btn-sm btn-default" ng-click = "addDevice()" >
< span class = "fas fa-plus" > < / span > < span translate > Add Remote Device< / span >
< / button >
< / span >
< div class = "clearfix" > < / div >
< / div >
2014-01-05 22:54:57 +00:00
< / div >
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< / div > <!-- /row -->
2014-04-09 21:00:23 +00:00
gui: Add warning when JavaScript is disabled in Web browser (fixes #7099) (#7102)
When using a Web browser with JavaScript either disabled or unavailable,
show a warning to let the user know that the Web GUI requires JS in
order to operate.
To achieve this, add a <div> that wraps both the navbar and the main
content, and then move the CSS class ng-cloak from the <html> element to
that <div>. This way, only the JavaScript-dependent part is hidden when
JS is unavailable, and not the whole website, as it is the case right
now. Then, add a <noscript> element right at the start of the <body>
element, so that the warning is also shown right away in text-based Web
browsers. The <noscript> element includes a stripped down version of the
navbar showing only the Syncthing logo, and then a container with the
warning itself. Lastly, leave the footer untouched and always visible,
because it does not rely on JavaScript at all.
Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
Co-authored-by: Jakob Borg <jakob@kastelo.net>
2020-11-09 08:15:22 +00:00
< / div > <!-- /container -->
< / div > <!-- /ng - cloak -->
2014-04-09 21:00:23 +00:00
<!-- Bottom bar -->
2015-01-10 17:02:27 +00:00
< nav class = "navbar navbar-default navbar-fixed-bottom" >
2014-02-12 11:10:44 +00:00
< div class = "container" >
2014-05-20 17:36:37 +00:00
< ul class = "nav navbar-nav" >
2018-05-24 18:59:32 +00:00
< li > < a class = "navbar-link" href = "https://syncthing.net/" target = "_blank" > < span class = "fas fa-home" > < / span > < span translate > Home page< / span > < / a > < / li >
< li > < a class = "navbar-link" href = "https://docs.syncthing.net/" target = "_blank" > < span class = "fas fa-book" > < / span > < span translate > Documentation< / span > < / a > < / li >
< li > < a class = "navbar-link" href = "https://forum.syncthing.net" target = "_blank" > < span class = "fas fa-question-circle" > < / span > < span translate > Support< / span > < / a > < / li >
2019-01-05 10:35:50 +00:00
< li > < a class = "navbar-link" href = "https://data.syncthing.net/" target = "_blank" > < span class = "fas fa-bar-chart" > < / span > < span translate > Statistics< / span > < / a > < / li >
2018-05-24 18:59:32 +00:00
< li > < a class = "navbar-link" href = "https://github.com/syncthing/syncthing/releases" target = "_blank" > < span class = "far fa-file-alt" > < / span > < span translate > Changelog< / span > < / a > < / li >
< li > < a class = "navbar-link" href = "https://github.com/syncthing/syncthing/issues" target = "_blank" > < span class = "fas fa-bug" > < / span > < span translate > Bugs< / span > < / a > < / li >
< li > < a class = "navbar-link" href = "https://github.com/syncthing/syncthing" target = "_blank" > < span class = "fas fa-wrench" > < / span > < span translate > Source Code< / span > < / a > < / li >
< li > < a class = "navbar-link" href = "https://twitter.com/syncthing" target = "_blank" > < span class = "fab fa-twitter" > < / span > Twitter< / a > < / li >
2014-04-09 21:00:23 +00:00
< / ul >
2014-02-12 11:10:44 +00:00
< / div >
2014-04-09 21:00:23 +00:00
< / nav >
2016-06-12 14:06:48 +00:00
< ng-include src = "'syncthing/core/networkErrorDialogView.html'" > < / ng-include >
< ng-include src = "'syncthing/core/httpErrorDialogView.html'" > < / ng-include >
< ng-include src = "'syncthing/core/restartingDialogView.html'" > < / ng-include >
< ng-include src = "'syncthing/core/upgradingDialogView.html'" > < / ng-include >
< ng-include src = "'syncthing/core/shutdownDialogView.html'" > < / ng-include >
< ng-include src = "'syncthing/device/idqrModalView.html'" > < / ng-include >
< ng-include src = "'syncthing/device/editDeviceModalView.html'" > < / ng-include >
2016-12-21 16:35:20 +00:00
< ng-include src = "'syncthing/device/globalChangesModalView.html'" > < / ng-include >
2016-06-12 14:06:48 +00:00
< ng-include src = "'syncthing/folder/editFolderModalView.html'" > < / ng-include >
2018-01-01 14:39:23 +00:00
< ng-include src = "'syncthing/folder/restoreVersionsModalView.html'" > < / ng-include >
< ng-include src = "'syncthing/folder/restoreVersionsConfirmation.html'" > < / ng-include >
2016-06-12 14:06:48 +00:00
< ng-include src = "'syncthing/settings/settingsModalView.html'" > < / ng-include >
< ng-include src = "'syncthing/settings/advancedSettingsModalView.html'" > < / ng-include >
2018-08-25 10:36:10 +00:00
< ng-include src = "'syncthing/settings/discardChangesConfirmation.html'" > < / ng-include >
2016-06-12 14:06:48 +00:00
< ng-include src = "'syncthing/usagereport/usageReportModalView.html'" > < / ng-include >
< ng-include src = "'syncthing/usagereport/usageReportPreviewModalView.html'" > < / ng-include >
< ng-include src = "'syncthing/transfer/neededFilesModalView.html'" > < / ng-include >
< ng-include src = "'syncthing/transfer/failedFilesModalView.html'" > < / ng-include >
2017-12-15 20:01:56 +00:00
< ng-include src = "'syncthing/transfer/remoteNeededFilesModalView.html'" > < / ng-include >
2018-12-11 08:59:04 +00:00
< ng-include src = "'syncthing/transfer/localChangedFilesModalView.html'" > < / ng-include >
2019-11-19 21:05:41 +00:00
< ng-include src = "'syncthing/core/upgradeModalView.html'" > < / ng-include >
2016-06-12 14:06:48 +00:00
< ng-include src = "'syncthing/core/majorUpgradeModalView.html'" > < / ng-include >
< ng-include src = "'syncthing/core/aboutModalView.html'" > < / ng-include >
2021-06-07 07:08:44 +00:00
< ng-include src = "'syncthing/core/connectivityStatusModalView.html'" > < / ng-include >
2017-12-02 11:28:06 +00:00
< ng-include src = "'syncthing/folder/removeFolderDialogView.html'" > < / ng-include >
2021-03-26 15:56:15 +00:00
< ng-include src = "'syncthing/folder/revertOverrideView.html'" > < / ng-include >
2017-12-02 11:28:06 +00:00
< ng-include src = "'syncthing/device/removeDeviceDialogView.html'" > < / ng-include >
2017-12-24 22:26:05 +00:00
< ng-include src = "'syncthing/core/logViewerModalView.html'" > < / ng-include >
2015-07-03 12:07:38 +00:00
2014-11-26 12:39:59 +00:00
<!-- vendor scripts -->
2017-07-15 09:54:37 +00:00
< script type = "text/javascript" src = "vendor/jquery/jquery-2.2.2.js" > < / script >
< script type = "text/javascript" src = "vendor/angular/angular.js" > < / script >
< script type = "text/javascript" src = "vendor/angular/angular-sanitize.js" > < / script >
< script type = "text/javascript" src = "vendor/angular/angular-translate.js" > < / script >
< script type = "text/javascript" src = "vendor/angular/angular-translate-loader-static-files.js" > < / script >
< script type = "text/javascript" src = "vendor/angular/angular-dirPagination.js" > < / script >
2018-01-01 14:39:23 +00:00
< script type = "text/javascript" src = "vendor/moment/moment.js" > < / script >
2017-07-15 09:54:37 +00:00
< script type = "text/javascript" src = "vendor/bootstrap/js/bootstrap.js" > < / script >
2018-05-24 18:59:32 +00:00
< script type = "text/javascript" src = "vendor/daterangepicker/daterangepicker.js" > < / script >
2018-01-01 14:39:23 +00:00
< script type = "text/javascript" src = "vendor/fancytree/jquery.fancytree-all-deps.js" > < / script >
2014-11-26 12:39:59 +00:00
<!-- / vendor scripts -->
<!-- gui application code -->
2017-07-15 09:54:37 +00:00
< script type = "text/javascript" src = "syncthing/core/module.js" > < / script >
< script type = "text/javascript" src = "syncthing/core/alwaysNumberFilter.js" > < / script >
< script type = "text/javascript" src = "syncthing/core/basenameFilter.js" > < / script >
< script type = "text/javascript" src = "syncthing/core/binaryFilter.js" > < / script >
2018-04-25 08:26:49 +00:00
< script type = "text/javascript" src = "syncthing/core/localeNumberFilter.js" > < / script >
2018-06-06 21:33:31 +00:00
< script type = "text/javascript" src = "syncthing/core/percentFilter.js" > < / script >
2017-07-15 09:54:37 +00:00
< script type = "text/javascript" src = "syncthing/core/durationFilter.js" > < / script >
< script type = "text/javascript" src = "syncthing/core/eventService.js" > < / script >
< script type = "text/javascript" src = "syncthing/core/identiconDirective.js" > < / script >
< script type = "text/javascript" src = "syncthing/core/languageSelectDirective.js" > < / script >
< script type = "text/javascript" src = "syncthing/core/lastErrorComponentFilter.js" > < / script >
< script type = "text/javascript" src = "syncthing/core/localeService.js" > < / script >
< script type = "text/javascript" src = "syncthing/core/modalDirective.js" > < / script >
< script type = "text/javascript" src = "syncthing/core/metricFilter.js" > < / script >
< script type = "text/javascript" src = "syncthing/core/notificationDirective.js" > < / script >
< script type = "text/javascript" src = "syncthing/core/pathIsSubDirDirective.js" > < / script >
< script type = "text/javascript" src = "syncthing/core/popoverDirective.js" > < / script >
< script type = "text/javascript" src = "syncthing/core/selectOnClickDirective.js" > < / script >
< script type = "text/javascript" src = "syncthing/core/syncthingController.js" > < / script >
< script type = "text/javascript" src = "syncthing/core/tooltipDirective.js" > < / script >
2017-10-17 07:56:36 +00:00
< script type = "text/javascript" src = "syncthing/core/uncamelFilter.js" > < / script >
2017-07-15 09:54:37 +00:00
< script type = "text/javascript" src = "syncthing/core/uniqueFolderDirective.js" > < / script >
< script type = "text/javascript" src = "syncthing/core/validDeviceidDirective.js" > < / script >
< script type = "text/javascript" src = "assets/lang/valid-langs.js" > < / script >
< script type = "text/javascript" src = "assets/lang/prettyprint.js" > < / script >
< script type = "text/javascript" src = "meta.js" > < / script >
< script type = "text/javascript" src = "syncthing/app.js" > < / script >
2014-11-26 12:39:59 +00:00
<!-- / gui application code -->
2014-01-05 22:54:57 +00:00
< / body >
< / html >