gitextract_gajczjdw/ ├── .idea/ │ ├── SimpletourDevops.iml │ ├── inspectionProfiles/ │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── Publicapi/ │ ├── __init__.py │ ├── dnspod/ │ │ ├── __init__.py │ │ └── apicn.py │ ├── dockerapi/ │ │ ├── Manager.py │ │ └── __init__.py │ └── saltstackapi/ │ ├── Assets_Module.py │ ├── SaltConApi.py │ └── __init__.py ├── README.md ├── SimpletourDevops/ │ ├── __init__.py │ ├── apps.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── dockermanager/ │ ├── Docker_Controller.py │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations/ │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── domainmanager/ │ └── urls.py ├── manage.py ├── requirements.txt ├── run_eventlet.py ├── saltadmin/ │ ├── Minions_Controller.py │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations/ │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── servermanager/ │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations/ │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20161121_1740.py │ │ ├── 0003_auto_20161128_1031.py │ │ ├── 0004_auto_20161128_1032.py │ │ ├── 0005_auto_20161128_1032.py │ │ ├── 0006_auto_20161128_1034.py │ │ ├── 0007_auto_20161128_1038.py │ │ ├── 0008_auto_20161128_1109.py │ │ ├── 0009_auto_20161128_1112.py │ │ ├── 0010_auto_20161128_1113.py │ │ ├── 0011_auto_20161202_1049.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── static/ │ └── assets/ │ ├── css/ │ │ ├── _variables.css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap.css │ │ ├── components.css │ │ ├── core.css │ │ ├── elements.css │ │ ├── icons.css │ │ ├── pages.css │ │ ├── responsive.css │ │ ├── statusecho.css │ │ ├── style.css │ │ ├── variables.css │ │ └── xterm.css │ ├── js/ │ │ ├── bootstrap.js │ │ ├── detect.js │ │ ├── fastclick.js │ │ ├── jquery.app.js │ │ ├── jquery.blockUI.js │ │ ├── jquery.core.js │ │ ├── jquery.nicescroll.js │ │ ├── jquery.slimscroll.js │ │ ├── json.js │ │ ├── json2yaml.js │ │ ├── npm.js │ │ ├── spin.js │ │ ├── waves.js │ │ └── xterm.js │ ├── pages/ │ │ ├── chartjs.init.js │ │ ├── datatables.editable.init.js │ │ ├── easy-pie-chart.init.js │ │ ├── jquery.bs-table.js │ │ ├── jquery.dashboard.js │ │ ├── jquery.flot.init.js │ │ ├── jquery.footable.js │ │ └── jquery.sweet-alert.init.js │ └── plugins/ │ ├── Chart.js/ │ │ ├── Chart.js │ │ └── src/ │ │ ├── Chart.Bar.js │ │ ├── Chart.Core.js │ │ ├── Chart.Doughnut.js │ │ ├── Chart.Line.js │ │ ├── Chart.PolarArea.js │ │ └── Chart.Radar.js │ ├── bootstrap-datepicker/ │ │ └── dist/ │ │ ├── css/ │ │ │ ├── bootstrap-datepicker.css │ │ │ ├── bootstrap-datepicker.standalone.css │ │ │ ├── bootstrap-datepicker3.css │ │ │ └── bootstrap-datepicker3.standalone.css │ │ └── js/ │ │ └── bootstrap-datepicker.js │ ├── bootstrap-select/ │ │ ├── css/ │ │ │ ├── bootstrap-select.css │ │ │ └── variables.css │ │ ├── dist/ │ │ │ ├── css/ │ │ │ │ └── bootstrap-select.css │ │ │ └── js/ │ │ │ ├── bootstrap-select.js │ │ │ └── i18n/ │ │ │ ├── defaults-bg_BG.js │ │ │ ├── defaults-cs_CZ.js │ │ │ ├── defaults-da_DK.js │ │ │ ├── defaults-de_DE.js │ │ │ ├── defaults-en_US.js │ │ │ ├── defaults-es_CL.js │ │ │ ├── defaults-eu.js │ │ │ ├── defaults-fa_IR.js │ │ │ ├── defaults-fr_FR.js │ │ │ ├── defaults-hu_HU.js │ │ │ ├── defaults-it_IT.js │ │ │ ├── defaults-ko_KR.js │ │ │ ├── defaults-nl_NL.js │ │ │ ├── defaults-pl_PL.js │ │ │ ├── defaults-pt_BR.js │ │ │ ├── defaults-pt_PT.js │ │ │ ├── defaults-ro_RO.js │ │ │ ├── defaults-ru_RU.js │ │ │ ├── defaults-sk_SK.js │ │ │ ├── defaults-sl_SI.js │ │ │ ├── defaults-sv_SE.js │ │ │ ├── defaults-tr_TR.js │ │ │ ├── defaults-ua_UA.js │ │ │ ├── defaults-zh_CN.js │ │ │ └── defaults-zh_TW.js │ │ └── js/ │ │ ├── .jshintrc │ │ ├── bootstrap-select.js │ │ └── i18n/ │ │ ├── defaults-bg_BG.js │ │ ├── defaults-cs_CZ.js │ │ ├── defaults-da_DK.js │ │ ├── defaults-de_DE.js │ │ ├── defaults-en_US.js │ │ ├── defaults-es_CL.js │ │ ├── defaults-eu.js │ │ ├── defaults-fa_IR.js │ │ ├── defaults-fr_FR.js │ │ ├── defaults-hu_HU.js │ │ ├── defaults-it_IT.js │ │ ├── defaults-ko_KR.js │ │ ├── defaults-nl_NL.js │ │ ├── defaults-pl_PL.js │ │ ├── defaults-pt_BR.js │ │ ├── defaults-pt_PT.js │ │ ├── defaults-ro_RO.js │ │ ├── defaults-ru_RU.js │ │ ├── defaults-sk_SK.js │ │ ├── defaults-sl_SI.js │ │ ├── defaults-sv_SE.js │ │ ├── defaults-tr_TR.js │ │ ├── defaults-ua_UA.js │ │ ├── defaults-zh_CN.js │ │ └── defaults-zh_TW.js │ ├── bootstrap-table/ │ │ ├── dist/ │ │ │ ├── bootstrap-table-all.js │ │ │ ├── bootstrap-table-locale-all.js │ │ │ ├── bootstrap-table.css │ │ │ ├── bootstrap-table.js │ │ │ ├── extensions/ │ │ │ │ ├── cookie/ │ │ │ │ │ └── bootstrap-table-cookie.js │ │ │ │ ├── editable/ │ │ │ │ │ └── bootstrap-table-editable.js │ │ │ │ ├── export/ │ │ │ │ │ └── bootstrap-table-export.js │ │ │ │ ├── filter/ │ │ │ │ │ └── bootstrap-table-filter.js │ │ │ │ ├── filter-control/ │ │ │ │ │ └── bootstrap-table-filter-control.js │ │ │ │ ├── flat-json/ │ │ │ │ │ └── bootstrap-table-flat-json.js │ │ │ │ ├── key-events/ │ │ │ │ │ └── bootstrap-table-key-events.js │ │ │ │ ├── mobile/ │ │ │ │ │ └── bootstrap-table-mobile.js │ │ │ │ ├── multiple-sort/ │ │ │ │ │ └── bootstrap-table-multiple-sort.js │ │ │ │ ├── natural-sorting/ │ │ │ │ │ └── bootstrap-table-natural-sorting.js │ │ │ │ ├── reorder-columns/ │ │ │ │ │ └── bootstrap-table-reorder-columns.js │ │ │ │ ├── reorder-rows/ │ │ │ │ │ ├── bootstrap-table-reorder-rows.css │ │ │ │ │ └── bootstrap-table-reorder-rows.js │ │ │ │ ├── resizable/ │ │ │ │ │ └── bootstrap-table-resizable.js │ │ │ │ └── toolbar/ │ │ │ │ └── bootstrap-table-toolbar.js │ │ │ └── locale/ │ │ │ ├── bootstrap-table-ar-SA.js │ │ │ ├── bootstrap-table-cs-CZ.js │ │ │ ├── bootstrap-table-da-DK.js │ │ │ ├── bootstrap-table-de-DE.js │ │ │ ├── bootstrap-table-el-GR.js │ │ │ ├── bootstrap-table-en-US.js │ │ │ ├── bootstrap-table-es-AR.js │ │ │ ├── bootstrap-table-es-CR.js │ │ │ ├── bootstrap-table-es-MX.js │ │ │ ├── bootstrap-table-es-NI.js │ │ │ ├── bootstrap-table-es-SP.js │ │ │ ├── bootstrap-table-fr-BE.js │ │ │ ├── bootstrap-table-fr-FR.js │ │ │ ├── bootstrap-table-hu-HU.js │ │ │ ├── bootstrap-table-it-IT.js │ │ │ ├── bootstrap-table-ja-JP.js │ │ │ ├── bootstrap-table-ka-GE.js │ │ │ ├── bootstrap-table-ko-KR.js │ │ │ ├── bootstrap-table-ms-MY.js │ │ │ ├── bootstrap-table-nb-NO.js │ │ │ ├── bootstrap-table-nl-NL.js │ │ │ ├── bootstrap-table-pl-PL.js │ │ │ ├── bootstrap-table-pt-BR.js │ │ │ ├── bootstrap-table-pt-PT.js │ │ │ ├── bootstrap-table-ro-RO.js │ │ │ ├── bootstrap-table-ru-RU.js │ │ │ ├── bootstrap-table-sk-SK.js │ │ │ ├── bootstrap-table-sv-SE.js │ │ │ ├── bootstrap-table-th-TH.js │ │ │ ├── bootstrap-table-tr-TR.js │ │ │ ├── bootstrap-table-uk-UA.js │ │ │ ├── bootstrap-table-ur-PK.js │ │ │ ├── bootstrap-table-vi-VN.js │ │ │ ├── bootstrap-table-zh-CN.js │ │ │ └── bootstrap-table-zh-TW.js │ │ └── src/ │ │ ├── bootstrap-table.css │ │ ├── bootstrap-table.js │ │ ├── extensions/ │ │ │ ├── cookie/ │ │ │ │ ├── README.md │ │ │ │ └── bootstrap-table-cookie.js │ │ │ ├── editable/ │ │ │ │ ├── README.md │ │ │ │ └── bootstrap-table-editable.js │ │ │ ├── export/ │ │ │ │ ├── README.md │ │ │ │ └── bootstrap-table-export.js │ │ │ ├── filter/ │ │ │ │ ├── README.md │ │ │ │ └── bootstrap-table-filter.js │ │ │ ├── filter-control/ │ │ │ │ ├── README.md │ │ │ │ └── bootstrap-table-filter-control.js │ │ │ ├── flat-json/ │ │ │ │ ├── README.md │ │ │ │ └── bootstrap-table-flat-json.js │ │ │ ├── key-events/ │ │ │ │ ├── README.md │ │ │ │ └── bootstrap-table-key-events.js │ │ │ ├── mobile/ │ │ │ │ ├── README.md │ │ │ │ └── bootstrap-table-mobile.js │ │ │ ├── multiple-sort/ │ │ │ │ ├── README.md │ │ │ │ └── bootstrap-table-multiple-sort.js │ │ │ ├── natural-sorting/ │ │ │ │ ├── README.md │ │ │ │ └── bootstrap-table-natural-sorting.js │ │ │ ├── reorder-columns/ │ │ │ │ ├── README.md │ │ │ │ └── bootstrap-table-reorder-columns.js │ │ │ ├── reorder-rows/ │ │ │ │ ├── README.md │ │ │ │ ├── bootstrap-table-reorder-rows.css │ │ │ │ └── bootstrap-table-reorder-rows.js │ │ │ ├── resizable/ │ │ │ │ ├── README.md │ │ │ │ └── bootstrap-table-resizable.js │ │ │ └── toolbar/ │ │ │ ├── README.md │ │ │ └── bootstrap-table-toolbar.js │ │ └── locale/ │ │ ├── README.md │ │ ├── bootstrap-table-ar-SA.js │ │ ├── bootstrap-table-cs-CZ.js │ │ ├── bootstrap-table-da-DK.js │ │ ├── bootstrap-table-de-DE.js │ │ ├── bootstrap-table-el-GR.js │ │ ├── bootstrap-table-en-US.js │ │ ├── bootstrap-table-en-US.js.template │ │ ├── bootstrap-table-es-AR.js │ │ ├── bootstrap-table-es-CR.js │ │ ├── bootstrap-table-es-MX.js │ │ ├── bootstrap-table-es-NI.js │ │ ├── bootstrap-table-es-SP.js │ │ ├── bootstrap-table-fr-BE.js │ │ ├── bootstrap-table-fr-FR.js │ │ ├── bootstrap-table-hu-HU.js │ │ ├── bootstrap-table-it-IT.js │ │ ├── bootstrap-table-ja-JP.js │ │ ├── bootstrap-table-ka-GE.js │ │ ├── bootstrap-table-ko-KR.js │ │ ├── bootstrap-table-ms-MY.js │ │ ├── bootstrap-table-nb-NO.js │ │ ├── bootstrap-table-nl-NL.js │ │ ├── bootstrap-table-pl-PL.js │ │ ├── bootstrap-table-pt-BR.js │ │ ├── bootstrap-table-pt-PT.js │ │ ├── bootstrap-table-ro-RO.js │ │ ├── bootstrap-table-ru-RU.js │ │ ├── bootstrap-table-sk-SK.js │ │ ├── bootstrap-table-sv-SE.js │ │ ├── bootstrap-table-th-TH.js │ │ ├── bootstrap-table-tr-TR.js │ │ ├── bootstrap-table-uk-UA.js │ │ ├── bootstrap-table-ur-PK.js │ │ ├── bootstrap-table-vi-VN.js │ │ ├── bootstrap-table-zh-CN.js │ │ └── bootstrap-table-zh-TW.js │ ├── bootstrap-touchspin/ │ │ ├── dist/ │ │ │ ├── jquery.bootstrap-touchspin.css │ │ │ └── jquery.bootstrap-touchspin.js │ │ └── src/ │ │ ├── jquery.bootstrap-touchspin.css │ │ └── jquery.bootstrap-touchspin.js │ ├── custombox/ │ │ └── src/ │ │ ├── css/ │ │ │ └── custombox.css │ │ └── js/ │ │ ├── custombox.js │ │ └── legacy.js │ ├── datatables/ │ │ └── dataTables.bootstrap.js │ ├── flot-chart/ │ │ ├── jquery.flot.crosshair.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.selection.js │ │ ├── jquery.flot.stack.js │ │ └── jquery.flot.time.js │ ├── footable/ │ │ └── css/ │ │ └── footable.core.css │ ├── jquery-datatables-editable/ │ │ ├── dataTables.bootstrap.js │ │ ├── datatables.css │ │ └── jquery.dataTables.js │ ├── jquery-knob/ │ │ ├── excanvas.js │ │ └── jquery.knob.js │ ├── jquery.easy-pie-chart/ │ │ ├── dist/ │ │ │ ├── angular.easypiechart.js │ │ │ ├── easypiechart.js │ │ │ └── jquery.easypiechart.js │ │ └── src/ │ │ ├── angular.directive.js │ │ ├── easypiechart.js │ │ ├── jquery.plugin.js │ │ └── renderer/ │ │ └── canvas.js │ ├── magnific-popup/ │ │ ├── dist/ │ │ │ ├── jquery.magnific-popup.js │ │ │ └── magnific-popup.css │ │ └── src/ │ │ ├── css/ │ │ │ ├── _settings.scss │ │ │ └── main.scss │ │ └── js/ │ │ ├── ajax.js │ │ ├── core.js │ │ ├── fastclick.js │ │ ├── gallery.js │ │ ├── iframe.js │ │ ├── image.js │ │ ├── inline.js │ │ ├── retina.js │ │ └── zoom.js │ ├── morris/ │ │ ├── morris.css │ │ └── morris.js │ ├── multiselect/ │ │ ├── css/ │ │ │ └── multi-select.css │ │ └── js/ │ │ └── jquery.multi-select.js │ ├── notifications/ │ │ ├── notification.css │ │ └── notify-metro.js │ ├── notifyjs/ │ │ ├── dist/ │ │ │ ├── notify-combined.js │ │ │ ├── notify.js │ │ │ └── styles/ │ │ │ ├── bootstrap/ │ │ │ │ └── notify-bootstrap.js │ │ │ └── metro/ │ │ │ ├── notify-metro.css │ │ │ └── notify-metro.js │ │ └── src/ │ │ ├── notify.coffee │ │ └── styles/ │ │ ├── STYLES-README.md │ │ └── bootstrap/ │ │ └── notify-bootstrap.coffee │ ├── peity/ │ │ └── jquery.peity.js │ ├── raphael/ │ │ └── raphael-min.js │ ├── select2/ │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── package.json │ │ ├── release.sh │ │ ├── select2-bootstrap.css │ │ ├── select2.css │ │ ├── select2.jquery.json │ │ ├── select2.js │ │ ├── select2_locale_ar.js │ │ ├── select2_locale_az.js │ │ ├── select2_locale_bg.js │ │ ├── select2_locale_ca.js │ │ ├── select2_locale_cs.js │ │ ├── select2_locale_da.js │ │ ├── select2_locale_de.js │ │ ├── select2_locale_el.js │ │ ├── select2_locale_en.js.template │ │ ├── select2_locale_es.js │ │ ├── select2_locale_et.js │ │ ├── select2_locale_eu.js │ │ ├── select2_locale_fa.js │ │ ├── select2_locale_fi.js │ │ ├── select2_locale_fr.js │ │ ├── select2_locale_gl.js │ │ ├── select2_locale_he.js │ │ ├── select2_locale_hr.js │ │ ├── select2_locale_hu.js │ │ ├── select2_locale_id.js │ │ ├── select2_locale_is.js │ │ ├── select2_locale_it.js │ │ ├── select2_locale_ja.js │ │ ├── select2_locale_ka.js │ │ ├── select2_locale_ko.js │ │ ├── select2_locale_lt.js │ │ ├── select2_locale_lv.js │ │ ├── select2_locale_mk.js │ │ ├── select2_locale_ms.js │ │ ├── select2_locale_nb.js │ │ ├── select2_locale_nl.js │ │ ├── select2_locale_pl.js │ │ ├── select2_locale_pt-BR.js │ │ ├── select2_locale_pt-PT.js │ │ ├── select2_locale_ro.js │ │ ├── select2_locale_rs.js │ │ ├── select2_locale_ru.js │ │ ├── select2_locale_sk.js │ │ ├── select2_locale_sv.js │ │ ├── select2_locale_th.js │ │ ├── select2_locale_tr.js │ │ ├── select2_locale_ug-CN.js │ │ ├── select2_locale_uk.js │ │ ├── select2_locale_vi.js │ │ ├── select2_locale_zh-CN.js │ │ └── select2_locale_zh-TW.js │ ├── summernote/ │ │ ├── dist/ │ │ │ ├── summernote-bs3.css │ │ │ ├── summernote.css │ │ │ └── summernote.js │ │ ├── lang/ │ │ │ ├── summernote-ar-AR.js │ │ │ ├── summernote-bg-BG.js │ │ │ ├── summernote-ca-ES.js │ │ │ ├── summernote-cs-CZ.js │ │ │ ├── summernote-da-DK.js │ │ │ ├── summernote-de-DE.js │ │ │ ├── summernote-es-ES.js │ │ │ ├── summernote-es-EU.js │ │ │ ├── summernote-fa-IR.js │ │ │ ├── summernote-fi-FI.js │ │ │ ├── summernote-fr-FR.js │ │ │ ├── summernote-he-IL.js │ │ │ ├── summernote-hu-HU.js │ │ │ ├── summernote-id-ID.js │ │ │ ├── summernote-it-IT.js │ │ │ ├── summernote-ja-JP.js │ │ │ ├── summernote-ko-KR.js │ │ │ ├── summernote-lt-LT.js │ │ │ ├── summernote-nb-NO.js │ │ │ ├── summernote-nl-NL.js │ │ │ ├── summernote-pl-PL.js │ │ │ ├── summernote-pt-BR.js │ │ │ ├── summernote-pt-PT.js │ │ │ ├── summernote-ro-RO.js │ │ │ ├── summernote-ru-RU.js │ │ │ ├── summernote-sk-SK.js │ │ │ ├── summernote-sl-SI.js │ │ │ ├── summernote-sr-RS-Latin.js │ │ │ ├── summernote-sr-RS.js │ │ │ ├── summernote-sv-SE.js │ │ │ ├── summernote-th-TH.js │ │ │ ├── summernote-tr-TR.js │ │ │ ├── summernote-uk-UA.js │ │ │ ├── summernote-vi-VN.js │ │ │ ├── summernote-zh-CN.js │ │ │ └── summernote-zh-TW.js │ │ ├── meteor/ │ │ │ ├── README.md │ │ │ ├── package-standalone.js │ │ │ ├── package.js │ │ │ ├── publish.sh │ │ │ ├── runtests.sh │ │ │ └── test.js │ │ ├── plugin/ │ │ │ ├── summernote-ext-hello.js │ │ │ ├── summernote-ext-hint.js │ │ │ └── summernote-ext-video.js │ │ └── src/ │ │ ├── css/ │ │ │ ├── elements.css │ │ │ └── summernote.css │ │ ├── js/ │ │ │ ├── EventHandler.js │ │ │ ├── Renderer.js │ │ │ ├── app.js │ │ │ ├── core/ │ │ │ │ ├── agent.js │ │ │ │ ├── async.js │ │ │ │ ├── dom.js │ │ │ │ ├── func.js │ │ │ │ ├── key.js │ │ │ │ ├── list.js │ │ │ │ └── range.js │ │ │ ├── defaults.js │ │ │ ├── editing/ │ │ │ │ ├── Bullet.js │ │ │ │ ├── History.js │ │ │ │ ├── Style.js │ │ │ │ ├── Table.js │ │ │ │ └── Typing.js │ │ │ ├── intro.js │ │ │ ├── module/ │ │ │ │ ├── Button.js │ │ │ │ ├── Clipboard.js │ │ │ │ ├── Codeview.js │ │ │ │ ├── DragAndDrop.js │ │ │ │ ├── Editor.js │ │ │ │ ├── Fullscreen.js │ │ │ │ ├── Handle.js │ │ │ │ ├── HelpDialog.js │ │ │ │ ├── ImageDialog.js │ │ │ │ ├── LinkDialog.js │ │ │ │ ├── Popover.js │ │ │ │ ├── Statusbar.js │ │ │ │ └── Toolbar.js │ │ │ ├── outro.js │ │ │ └── summernote.js │ │ ├── less/ │ │ │ ├── elements.less │ │ │ └── summernote.less │ │ └── sass/ │ │ └── summernote.scss │ ├── sweetalert/ │ │ └── dist/ │ │ ├── sweetalert-dev.js │ │ └── sweetalert.css │ ├── switchery/ │ │ ├── dist/ │ │ │ ├── switchery.css │ │ │ └── switchery.js │ │ ├── meteor/ │ │ │ ├── export.js │ │ │ └── tests.js │ │ ├── switchery.css │ │ └── switchery.js │ ├── tiny-editable/ │ │ ├── mindmup-editabletable.js │ │ └── numeric-input-example.js │ └── waypoints/ │ └── lib/ │ ├── jquery.waypoints.js │ ├── noframework.waypoints.js │ ├── shortcuts/ │ │ ├── infinite.js │ │ ├── inview.js │ │ └── sticky.js │ ├── waypoints.debug.js │ └── zepto.waypoints.js ├── supervisord.conf ├── templates/ │ ├── 403.html │ ├── 404.html │ ├── 500.html │ ├── base.html │ ├── dockermanager/ │ │ ├── containers_list.html │ │ ├── dockerhosts_add.html │ │ ├── dockerhosts_edit.html │ │ ├── dockerhosts_list.html │ │ ├── dockerhosts_logs.html │ │ ├── images_list.html │ │ └── websocket.html │ ├── domainmanager/ │ │ ├── domain_list.html │ │ └── domain_records.html │ ├── saltadmin/ │ │ ├── key_list.html │ │ ├── minion_status.html │ │ ├── salt_cmd.html │ │ ├── saltjob_detail.html │ │ ├── saltjob_list.html │ │ ├── saltmaster_list.html │ │ └── saltmodule_deploy.html │ ├── servermanager/ │ │ ├── assets_list.html │ │ ├── assetschange.html │ │ ├── assetsdetail.html │ │ ├── hosts.html │ │ ├── servers_change.html │ │ ├── servers_detail.html │ │ └── servers_list.html │ ├── tempdir/ │ │ ├── foot_script.html │ │ ├── head_css.html │ │ └── head_script.html │ └── webapp/ │ ├── index.html │ ├── login.html │ ├── register.html │ ├── resetpass.html │ ├── sendresetpw.html │ ├── sysrestuserpassword.html │ └── userinfo.html ├── uwsgi.ini └── webapp/ ├── Extends/ │ ├── PageList.py │ └── __init__.py ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations/ │ └── __init__.py ├── models.py ├── tasks.py ├── tests.py ├── urls.py └── views.py