66 API
99
SWSCloudAdministrator/application.py
Normal file
|
@ -0,0 +1,99 @@
|
|||
# coding: utf-8
|
||||
|
||||
from flask import Flask, g, render_template
|
||||
from flask_babel import Babel
|
||||
from flaskext.markdown import Markdown
|
||||
|
||||
from SWSCloudCore import models
|
||||
from SWSCloudCore.config import config
|
||||
from SWSCloudCore.models import database
|
||||
from SWSCloudServerAPI.ServerAPI import viewServerAPI
|
||||
from SWSCloudWeb.views import viewHomepage
|
||||
from SWSCloudWeb.views.account import viewAccount
|
||||
from SWSCloudWeb.views.administrator import viewAdministrator
|
||||
from SWSCloudWeb.views.containers import viewContainers
|
||||
from SWSCloudWeb.views.documents import viewDocuments
|
||||
from SWSCloudWeb.views.kb import viewKB
|
||||
from SWSCloudWeb.views.payments import viewPayments
|
||||
from SWSCloudWeb.views.support import viewSupport
|
||||
from SWSCloudWeb.views.tasks import viewTasks
|
||||
from SWSCloudWeb.views.vms import viewVMs
|
||||
|
||||
app = Flask(__name__, static_folder='static', static_url_path='')
|
||||
# app.config['SERVER_NAME'] = settings.get('Application', 'SERVER_NAME')
|
||||
app.config['DEBUG'] = config.getboolean('Application', 'DEBUG')
|
||||
app.config['SECRET_KEY'] = config.get("Application", "SECRET_KEY")
|
||||
Markdown(app)
|
||||
babel = Babel(app)
|
||||
|
||||
|
||||
# /
|
||||
app.register_blueprint(viewHomepage)
|
||||
app.register_blueprint(viewSupport)
|
||||
app.register_blueprint(viewKB)
|
||||
app.register_blueprint(viewDocuments)
|
||||
# /tasks
|
||||
app.register_blueprint(viewTasks)
|
||||
# /containers
|
||||
app.register_blueprint(viewContainers)
|
||||
app.register_blueprint(viewVMs)
|
||||
# /id
|
||||
app.register_blueprint(viewAccount)
|
||||
# /payments
|
||||
app.register_blueprint(viewPayments)
|
||||
# /api
|
||||
app.register_blueprint(viewServerAPI)
|
||||
# /administrator
|
||||
app.register_blueprint(viewAdministrator)
|
||||
|
||||
|
||||
@app.errorhandler(404)
|
||||
def page_not_found(e):
|
||||
return render_template('errors/404.html'), 404
|
||||
|
||||
|
||||
@app.errorhandler(403)
|
||||
def page_not_found(e):
|
||||
return render_template('errors/403.html'), 403
|
||||
|
||||
|
||||
@app.errorhandler(410)
|
||||
def page_not_found(e):
|
||||
return render_template('errors/410.html'), 410
|
||||
|
||||
|
||||
@app.errorhandler(500)
|
||||
def page_not_found(e):
|
||||
print e
|
||||
return render_template('errors/500.html'), 500
|
||||
|
||||
|
||||
@app.before_request
|
||||
def before_request():
|
||||
g.settings = dict()
|
||||
# извлекаем настройки и определяем их в глобальную переменную
|
||||
for setting in models.Settings.select(models.Settings.key, models.Settings.val).execute():
|
||||
g.settings[setting.key] = setting.val
|
||||
|
||||
|
||||
@app.before_first_request
|
||||
def before_first_request():
|
||||
try:
|
||||
database.connect()
|
||||
except Exception as e:
|
||||
app.logger.error(e)
|
||||
# TODO: code to email alert
|
||||
# g.endpoint = request.endpoint.replace('.', '/')
|
||||
return render_template('errors/500.html'), 500
|
||||
|
||||
|
||||
@app.after_request
|
||||
def after_request(response):
|
||||
# app.logger.debug("db.close")
|
||||
# try:
|
||||
# database.close()
|
||||
# except Exception as e:
|
||||
# app.logger.error(e)
|
||||
# TODO: code to email alert
|
||||
# pass
|
||||
return response
|
48
SWSCloudAdministrator/static/css/fonts/clearsans.css
Normal file
|
@ -0,0 +1,48 @@
|
|||
@font-face {
|
||||
font-family: 'Clear Sans';
|
||||
src: local('Clear Sans Thin'), local('ClearSans-Thin'), url('/fonts/clearsans/200.woff2') format('woff2'), url('/fonts/clearsans/200.woff') format('woff');
|
||||
font-weight: 200;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Clear Sans';
|
||||
src: local('Clear Sans Light'), local('ClearSans-Light'), url('/fonts/clearsans/300.woff2') format('woff2'), url('/fonts/clearsans/300.woff') format('woff');
|
||||
font-weight: 300;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Clear Sans';
|
||||
src: local('Clear Sans'), local('ClearSans'), url('/fonts/clearsans/400.woff2') format('woff2'), url('/fonts/clearsans/400.woff') format('woff');
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Clear Sans';
|
||||
src: local('Clear Sans Italic'), local('ClearSans-Italic'), url('/fonts/clearsans/400i.woff2') format('woff2'), url('/fonts/clearsans/400i.woff') format('woff');
|
||||
font-weight: 400;
|
||||
font-style: italic;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Clear Sans';
|
||||
src: local('Clear Sans Medium'), local('ClearSans-Medium'), url('/fonts/clearsans/500.woff2') format('woff2'), url('/fonts/clearsans/500.woff') format('woff');
|
||||
font-weight: 500;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Clear Sans';
|
||||
src: local('Clear Sans Medium Italic'), local('ClearSans-MediumItalic'), url('/fonts/clearsans/500i.woff2') format('woff2'), url('/fonts/clearsans/500i.woff') format('woff');
|
||||
font-weight: 500;
|
||||
font-style: italic;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Clear Sans';
|
||||
src: local('Clear Sans Bold'), local('ClearSans-Bold'), url('/fonts/clearsans/700.woff2') format('woff2'), url('/fonts/clearsans/700.woff') format('woff');
|
||||
font-weight: 700;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Clear Sans';
|
||||
src: local('Clear Sans Bold Italic'), local('ClearSans-BoldItalic'), url('/fonts/clearsans/700i.woff2') format('woff2'), url('/fonts/clearsans/700i.woff') format('woff');
|
||||
font-weight: 700;
|
||||
font-style: italic;
|
||||
}
|
6201
SWSCloudAdministrator/static/css/foundation.css
vendored
Normal file
1
SWSCloudAdministrator/static/css/foundation.min.css
vendored
Normal file
80
SWSCloudAdministrator/static/css/gocloud.css
Normal file
|
@ -0,0 +1,80 @@
|
|||
@import "/css/fonts/clearsans.css";
|
||||
|
||||
body {
|
||||
font-family: 'Clear sans';
|
||||
}
|
||||
|
||||
header {
|
||||
background: #333 none repeat scroll 0% 0%;
|
||||
}
|
||||
#banner {
|
||||
overflov: hidden;
|
||||
padding: 4em 0em 5em;
|
||||
background: #202020 none repeat scroll 0% 0% / cover;
|
||||
background-position:
|
||||
color: rgba(255, 255, 255, 0.8);
|
||||
background: transparent url(/images/promo/bg2.png) repeat-x scroll 0% 0%;
|
||||
}
|
||||
|
||||
#banner p {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#banner #slogan {
|
||||
opacity: 0.8;
|
||||
font-family: 'Clear sans';
|
||||
font-size: 36px;
|
||||
color: #FFF;
|
||||
font-weight: 200;
|
||||
}
|
||||
#banner #sub {
|
||||
opacity: 0.5;
|
||||
font-family: 'Clear sans';
|
||||
font-size: 24px;
|
||||
color: #FFF;
|
||||
font-weight: 200;
|
||||
}
|
||||
|
||||
#banner {
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
|
||||
footer {
|
||||
border-top: 1px solid #999;
|
||||
}
|
||||
footer .row {
|
||||
margin-top: 25px;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
.price {
|
||||
text-align: right;
|
||||
}
|
||||
.price span {
|
||||
color: red; font-weight: bolder;
|
||||
}
|
||||
|
||||
|
||||
ul#paymentlist {
|
||||
list-style: none;
|
||||
background: #000;
|
||||
}
|
||||
ul#paymentlist li {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-right: 15px;
|
||||
}
|
||||
ul#paymentlist li img {
|
||||
height: 38px;
|
||||
margin-top: 15px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
ul#features-list {
|
||||
/* list-style: none; */
|
||||
font-size: 1.5em;
|
||||
}
|
||||
ul#features-list li {
|
||||
font-family: 'Clear sans';
|
||||
margin-left: 15px;
|
||||
}
|
29
SWSCloudAdministrator/static/css/hp.css
Normal file
|
@ -0,0 +1,29 @@
|
|||
#logo {
|
||||
margin-top: 15px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
footer {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.top-bar {
|
||||
background: none repeat scroll 0% 0% #371A5B;
|
||||
}
|
||||
|
||||
.top-bar-section ul li {
|
||||
/*background: none repeat scroll 0% 0% #371A5B;*/
|
||||
}
|
||||
|
||||
.top-bar-section li:not(.has-form) a:not(.button) {
|
||||
background: none repeat scroll 0% 0% #371A5B;
|
||||
}
|
||||
|
||||
.top-bar-section li:hover(.has-form) a:hover(.button) {
|
||||
/*background: none repeat scroll 0% 0% #371A5B;*/
|
||||
}
|
||||
|
||||
|
||||
.top-bar-section ul li {
|
||||
background: none repeat scroll 0% 0% #371A5B;
|
||||
}
|
427
SWSCloudAdministrator/static/css/normalize.css
vendored
Normal file
|
@ -0,0 +1,427 @@
|
|||
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
|
||||
|
||||
/**
|
||||
* 1. Set default font family to sans-serif.
|
||||
* 2. Prevent iOS text size adjust after orientation change, without disabling
|
||||
* user zoom.
|
||||
*/
|
||||
|
||||
html {
|
||||
font-family: sans-serif; /* 1 */
|
||||
-ms-text-size-adjust: 100%; /* 2 */
|
||||
-webkit-text-size-adjust: 100%; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove default margin.
|
||||
*/
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* HTML5 display definitions
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Correct `block` display not defined for any HTML5 element in IE 8/9.
|
||||
* Correct `block` display not defined for `details` or `summary` in IE 10/11
|
||||
* and Firefox.
|
||||
* Correct `block` display not defined for `main` in IE 11.
|
||||
*/
|
||||
|
||||
article,
|
||||
aside,
|
||||
details,
|
||||
figcaption,
|
||||
figure,
|
||||
footer,
|
||||
header,
|
||||
hgroup,
|
||||
main,
|
||||
menu,
|
||||
nav,
|
||||
section,
|
||||
summary {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct `inline-block` display not defined in IE 8/9.
|
||||
* 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
|
||||
*/
|
||||
|
||||
audio,
|
||||
canvas,
|
||||
progress,
|
||||
video {
|
||||
display: inline-block; /* 1 */
|
||||
vertical-align: baseline; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent modern browsers from displaying `audio` without controls.
|
||||
* Remove excess height in iOS 5 devices.
|
||||
*/
|
||||
|
||||
audio:not([controls]) {
|
||||
display: none;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address `[hidden]` styling not present in IE 8/9/10.
|
||||
* Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
|
||||
*/
|
||||
|
||||
[hidden],
|
||||
template {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Links
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the gray background color from active links in IE 10.
|
||||
*/
|
||||
|
||||
a {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
/**
|
||||
* Improve readability when focused and also mouse hovered in all browsers.
|
||||
*/
|
||||
|
||||
a:active,
|
||||
a:hover {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
/* Text-level semantics
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
|
||||
*/
|
||||
|
||||
abbr[title] {
|
||||
border-bottom: 1px dotted;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
|
||||
*/
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address styling not present in Safari and Chrome.
|
||||
*/
|
||||
|
||||
dfn {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address variable `h1` font-size and margin within `section` and `article`
|
||||
* contexts in Firefox 4+, Safari, and Chrome.
|
||||
*/
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
margin: 0.67em 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address styling not present in IE 8/9.
|
||||
*/
|
||||
|
||||
mark {
|
||||
background: #ff0;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address inconsistent and variable font size in all browsers.
|
||||
*/
|
||||
|
||||
small {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
|
||||
*/
|
||||
|
||||
sub,
|
||||
sup {
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
/* Embedded content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove border when inside `a` element in IE 8/9/10.
|
||||
*/
|
||||
|
||||
img {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct overflow not hidden in IE 9/10/11.
|
||||
*/
|
||||
|
||||
svg:not(:root) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Grouping content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Address margin not present in IE 8/9 and Safari.
|
||||
*/
|
||||
|
||||
figure {
|
||||
margin: 1em 40px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address differences between Firefox and other browsers.
|
||||
*/
|
||||
|
||||
hr {
|
||||
-moz-box-sizing: content-box;
|
||||
box-sizing: content-box;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Contain overflow in all browsers.
|
||||
*/
|
||||
|
||||
pre {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address odd `em`-unit font size rendering in all browsers.
|
||||
*/
|
||||
|
||||
code,
|
||||
kbd,
|
||||
pre,
|
||||
samp {
|
||||
font-family: monospace, monospace;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
/* Forms
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Known limitation: by default, Chrome and Safari on OS X allow very limited
|
||||
* styling of `select`, unless a `border` property is set.
|
||||
*/
|
||||
|
||||
/**
|
||||
* 1. Correct color not being inherited.
|
||||
* Known issue: affects color of disabled elements.
|
||||
* 2. Correct font properties not being inherited.
|
||||
* 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
|
||||
*/
|
||||
|
||||
button,
|
||||
input,
|
||||
optgroup,
|
||||
select,
|
||||
textarea {
|
||||
color: inherit; /* 1 */
|
||||
font: inherit; /* 2 */
|
||||
margin: 0; /* 3 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Address `overflow` set to `hidden` in IE 8/9/10/11.
|
||||
*/
|
||||
|
||||
button {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address inconsistent `text-transform` inheritance for `button` and `select`.
|
||||
* All other form control elements do not inherit `text-transform` values.
|
||||
* Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
|
||||
* Correct `select` style inheritance in Firefox.
|
||||
*/
|
||||
|
||||
button,
|
||||
select {
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
||||
* and `video` controls.
|
||||
* 2. Correct inability to style clickable `input` types in iOS.
|
||||
* 3. Improve usability and consistency of cursor style between image-type
|
||||
* `input` and others.
|
||||
*/
|
||||
|
||||
button,
|
||||
html input[type="button"], /* 1 */
|
||||
input[type="reset"],
|
||||
input[type="submit"] {
|
||||
-webkit-appearance: button; /* 2 */
|
||||
cursor: pointer; /* 3 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Re-set default cursor for disabled elements.
|
||||
*/
|
||||
|
||||
button[disabled],
|
||||
html input[disabled] {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove inner padding and border in Firefox 4+.
|
||||
*/
|
||||
|
||||
button::-moz-focus-inner,
|
||||
input::-moz-focus-inner {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
|
||||
* the UA stylesheet.
|
||||
*/
|
||||
|
||||
input {
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
/**
|
||||
* It's recommended that you don't attempt to style these elements.
|
||||
* Firefox's implementation doesn't respect box-sizing, padding, or width.
|
||||
*
|
||||
* 1. Address box sizing set to `content-box` in IE 8/9/10.
|
||||
* 2. Remove excess padding in IE 8/9/10.
|
||||
*/
|
||||
|
||||
input[type="checkbox"],
|
||||
input[type="radio"] {
|
||||
box-sizing: border-box; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Fix the cursor style for Chrome's increment/decrement buttons. For certain
|
||||
* `font-size` values of the `input`, it causes the cursor style of the
|
||||
* decrement button to change from `default` to `text`.
|
||||
*/
|
||||
|
||||
input[type="number"]::-webkit-inner-spin-button,
|
||||
input[type="number"]::-webkit-outer-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Address `appearance` set to `searchfield` in Safari and Chrome.
|
||||
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome
|
||||
* (include `-moz` to future-proof).
|
||||
*/
|
||||
|
||||
input[type="search"] {
|
||||
-webkit-appearance: textfield; /* 1 */
|
||||
-moz-box-sizing: content-box;
|
||||
-webkit-box-sizing: content-box; /* 2 */
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove inner padding and search cancel button in Safari and Chrome on OS X.
|
||||
* Safari (but not Chrome) clips the cancel button when the search input has
|
||||
* padding (and `textfield` appearance).
|
||||
*/
|
||||
|
||||
input[type="search"]::-webkit-search-cancel-button,
|
||||
input[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define consistent border, margin, and padding.
|
||||
*/
|
||||
|
||||
fieldset {
|
||||
border: 1px solid #c0c0c0;
|
||||
margin: 0 2px;
|
||||
padding: 0.35em 0.625em 0.75em;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct `color` not being inherited in IE 8/9/10/11.
|
||||
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
|
||||
*/
|
||||
|
||||
legend {
|
||||
border: 0; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove default vertical scrollbar in IE 8/9/10/11.
|
||||
*/
|
||||
|
||||
textarea {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Don't inherit the `font-weight` (applied by a rule above).
|
||||
* NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
|
||||
*/
|
||||
|
||||
optgroup {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* Tables
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove most spacing between table cells.
|
||||
*/
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
|
||||
td,
|
||||
th {
|
||||
padding: 0;
|
||||
}
|
29
SWSCloudAdministrator/static/css/style.css
Normal file
|
@ -0,0 +1,29 @@
|
|||
#logo {
|
||||
margin-top: 15px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
footer {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.top-bar {
|
||||
background: none repeat scroll 0% 0% #371A5B;
|
||||
}
|
||||
|
||||
.top-bar-section ul li {
|
||||
/*background: none repeat scroll 0% 0% #371A5B;*/
|
||||
}
|
||||
|
||||
.top-bar-section li:not(.has-form) a:not(.button) {
|
||||
background: none repeat scroll 0% 0% #371A5B;
|
||||
}
|
||||
|
||||
.top-bar-section li:hover(.has-form) a:hover(.button) {
|
||||
/*background: none repeat scroll 0% 0% #371A5B;*/
|
||||
}
|
||||
|
||||
|
||||
.top-bar-section ul li {
|
||||
background: none repeat scroll 0% 0% #371A5B;
|
||||
}
|
BIN
SWSCloudAdministrator/static/fonts/clearsans/200.woff
Normal file
BIN
SWSCloudAdministrator/static/fonts/clearsans/200.woff2
Normal file
BIN
SWSCloudAdministrator/static/fonts/clearsans/300.woff
Normal file
BIN
SWSCloudAdministrator/static/fonts/clearsans/300.woff2
Normal file
BIN
SWSCloudAdministrator/static/fonts/clearsans/400.woff
Normal file
BIN
SWSCloudAdministrator/static/fonts/clearsans/400.woff2
Normal file
BIN
SWSCloudAdministrator/static/fonts/clearsans/400i.woff
Normal file
BIN
SWSCloudAdministrator/static/fonts/clearsans/400i.woff2
Normal file
BIN
SWSCloudAdministrator/static/fonts/clearsans/500.woff
Normal file
BIN
SWSCloudAdministrator/static/fonts/clearsans/500.woff2
Normal file
BIN
SWSCloudAdministrator/static/fonts/clearsans/500i.woff
Normal file
BIN
SWSCloudAdministrator/static/fonts/clearsans/500i.woff2
Normal file
BIN
SWSCloudAdministrator/static/fonts/clearsans/700.woff
Normal file
BIN
SWSCloudAdministrator/static/fonts/clearsans/700.woff2
Normal file
BIN
SWSCloudAdministrator/static/fonts/clearsans/700i.woff
Normal file
BIN
SWSCloudAdministrator/static/fonts/clearsans/700i.woff2
Normal file
BIN
SWSCloudAdministrator/static/images/country/flat/16/AD.png
Normal file
After Width: | Height: | Size: 263 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/AE.png
Normal file
After Width: | Height: | Size: 107 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/AF.png
Normal file
After Width: | Height: | Size: 259 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/AG.png
Normal file
After Width: | Height: | Size: 302 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/AI.png
Normal file
After Width: | Height: | Size: 332 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/AL.png
Normal file
After Width: | Height: | Size: 291 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/AM.png
Normal file
After Width: | Height: | Size: 105 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/AN.png
Normal file
After Width: | Height: | Size: 145 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/AO.png
Normal file
After Width: | Height: | Size: 241 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/AQ.png
Normal file
After Width: | Height: | Size: 382 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/AR.png
Normal file
After Width: | Height: | Size: 209 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/AS.png
Normal file
After Width: | Height: | Size: 448 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/AT.png
Normal file
After Width: | Height: | Size: 98 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/AU.png
Normal file
After Width: | Height: | Size: 228 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/AW.png
Normal file
After Width: | Height: | Size: 182 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/AX.png
Normal file
After Width: | Height: | Size: 121 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/AZ.png
Normal file
After Width: | Height: | Size: 267 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/BA.png
Normal file
After Width: | Height: | Size: 355 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/BB.png
Normal file
After Width: | Height: | Size: 159 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/BD.png
Normal file
After Width: | Height: | Size: 211 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/BE.png
Normal file
After Width: | Height: | Size: 102 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/BF.png
Normal file
After Width: | Height: | Size: 166 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/BG.png
Normal file
After Width: | Height: | Size: 103 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/BH.png
Normal file
After Width: | Height: | Size: 129 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/BI.png
Normal file
After Width: | Height: | Size: 454 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/BJ.png
Normal file
After Width: | Height: | Size: 106 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/BL.png
Normal file
After Width: | Height: | Size: 539 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/BM.png
Normal file
After Width: | Height: | Size: 321 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/BN.png
Normal file
After Width: | Height: | Size: 518 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/BO.png
Normal file
After Width: | Height: | Size: 236 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/BR.png
Normal file
After Width: | Height: | Size: 432 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/BS.png
Normal file
After Width: | Height: | Size: 171 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/BT.png
Normal file
After Width: | Height: | Size: 449 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/BW.png
Normal file
After Width: | Height: | Size: 108 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/BY.png
Normal file
After Width: | Height: | Size: 151 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/BZ.png
Normal file
After Width: | Height: | Size: 337 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/CA.png
Normal file
After Width: | Height: | Size: 177 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/CC.png
Normal file
After Width: | Height: | Size: 259 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/CD.png
Normal file
After Width: | Height: | Size: 432 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/CF.png
Normal file
After Width: | Height: | Size: 162 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/CG.png
Normal file
After Width: | Height: | Size: 152 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/CH.png
Normal file
After Width: | Height: | Size: 100 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/CI.png
Normal file
After Width: | Height: | Size: 100 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/CK.png
Normal file
After Width: | Height: | Size: 331 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/CL.png
Normal file
After Width: | Height: | Size: 150 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/CM.png
Normal file
After Width: | Height: | Size: 163 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/CN.png
Normal file
After Width: | Height: | Size: 310 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/CO.png
Normal file
After Width: | Height: | Size: 108 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/CR.png
Normal file
After Width: | Height: | Size: 110 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/CU.png
Normal file
After Width: | Height: | Size: 215 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/CV.png
Normal file
After Width: | Height: | Size: 138 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/CW.png
Normal file
After Width: | Height: | Size: 191 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/CX.png
Normal file
After Width: | Height: | Size: 390 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/CY.png
Normal file
After Width: | Height: | Size: 364 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/CZ.png
Normal file
After Width: | Height: | Size: 221 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/DE.png
Normal file
After Width: | Height: | Size: 102 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/DJ.png
Normal file
After Width: | Height: | Size: 228 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/DK.png
Normal file
After Width: | Height: | Size: 106 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/DM.png
Normal file
After Width: | Height: | Size: 333 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/DO.png
Normal file
After Width: | Height: | Size: 142 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/DZ.png
Normal file
After Width: | Height: | Size: 309 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/EC.png
Normal file
After Width: | Height: | Size: 264 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/EE.png
Normal file
After Width: | Height: | Size: 102 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/EG.png
Normal file
After Width: | Height: | Size: 199 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/EH.png
Normal file
After Width: | Height: | Size: 248 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/ER.png
Normal file
After Width: | Height: | Size: 421 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/ES.png
Normal file
After Width: | Height: | Size: 221 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/ET.png
Normal file
After Width: | Height: | Size: 420 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/EU.png
Normal file
After Width: | Height: | Size: 316 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/FI.png
Normal file
After Width: | Height: | Size: 103 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/FJ.png
Normal file
After Width: | Height: | Size: 387 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/FK.png
Normal file
After Width: | Height: | Size: 344 B |
BIN
SWSCloudAdministrator/static/images/country/flat/16/FM.png
Normal file
After Width: | Height: | Size: 198 B |