├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── CHANGELOG ├── LICENSE ├── README.md ├── lwp.conf ├── lwp.db ├── lwp.py ├── lwp ├── LICENSE └── __init__.py ├── lxclite ├── LICENSE └── __init__.py ├── static ├── css │ ├── bootstrap-responsive.min.css │ ├── bootstrap-select.min.css │ ├── bootstrap.css │ └── bootstrapSwitch.css ├── ico │ └── favicon.ico ├── img │ ├── glyphicons-halflings-white.png │ └── glyphicons-halflings.png └── js │ ├── bootstrap.min.js │ ├── bootstrapSwitch.js │ ├── html5slider.js │ └── jqBootstrapValidation.js ├── templates ├── about.html ├── checkconfig.html ├── edit.html ├── includes │ ├── aside.html │ ├── modal_clone.html │ ├── modal_create.html │ ├── modal_delete.html │ ├── modal_destroy.html │ ├── modal_new_user.html │ ├── modal_reboot.html │ ├── modals.html │ └── nav.html ├── index.html ├── layout.html ├── login.html ├── lxc-net.html └── users.html └── version /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/README.md -------------------------------------------------------------------------------- /lwp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/lwp.conf -------------------------------------------------------------------------------- /lwp.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/lwp.db -------------------------------------------------------------------------------- /lwp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/lwp.py -------------------------------------------------------------------------------- /lwp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/lwp/LICENSE -------------------------------------------------------------------------------- /lwp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/lwp/__init__.py -------------------------------------------------------------------------------- /lxclite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/lxclite/LICENSE -------------------------------------------------------------------------------- /lxclite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/lxclite/__init__.py -------------------------------------------------------------------------------- /static/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/static/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /static/css/bootstrap-select.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/static/css/bootstrap-select.min.css -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/bootstrapSwitch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/static/css/bootstrapSwitch.css -------------------------------------------------------------------------------- /static/ico/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/static/ico/favicon.ico -------------------------------------------------------------------------------- /static/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/static/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /static/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/static/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/bootstrapSwitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/static/js/bootstrapSwitch.js -------------------------------------------------------------------------------- /static/js/html5slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/static/js/html5slider.js -------------------------------------------------------------------------------- /static/js/jqBootstrapValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/static/js/jqBootstrapValidation.js -------------------------------------------------------------------------------- /templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/templates/about.html -------------------------------------------------------------------------------- /templates/checkconfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/templates/checkconfig.html -------------------------------------------------------------------------------- /templates/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/templates/edit.html -------------------------------------------------------------------------------- /templates/includes/aside.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/templates/includes/aside.html -------------------------------------------------------------------------------- /templates/includes/modal_clone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/templates/includes/modal_clone.html -------------------------------------------------------------------------------- /templates/includes/modal_create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/templates/includes/modal_create.html -------------------------------------------------------------------------------- /templates/includes/modal_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/templates/includes/modal_delete.html -------------------------------------------------------------------------------- /templates/includes/modal_destroy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/templates/includes/modal_destroy.html -------------------------------------------------------------------------------- /templates/includes/modal_new_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/templates/includes/modal_new_user.html -------------------------------------------------------------------------------- /templates/includes/modal_reboot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/templates/includes/modal_reboot.html -------------------------------------------------------------------------------- /templates/includes/modals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/templates/includes/modals.html -------------------------------------------------------------------------------- /templates/includes/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/templates/includes/nav.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/templates/layout.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/lxc-net.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/templates/lxc-net.html -------------------------------------------------------------------------------- /templates/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxc-webpanel/LXC-Web-Panel/HEAD/templates/users.html -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- 1 | 0.2 --------------------------------------------------------------------------------