├── README.md ├── conf └── app.conf ├── controllers ├── Base.go ├── Login.go ├── Main.go └── Operation.go ├── main.go ├── models ├── Base.go └── mongo.go ├── routers └── router.go ├── static ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── bootstrap.min.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── img │ └── wait.gif └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery.pager.js │ └── npm.js ├── tests └── default_test.go └── views ├── index.tpl ├── layout ├── base.tpl ├── bread.tpl ├── js.tpl ├── nav.tpl └── table.tpl ├── login.tpl ├── maincontroller └── post.tpl ├── modal ├── drop.tpl ├── find.tpl ├── insert.tpl ├── remove.tpl └── update.tpl └── operation ├── drop.tpl ├── index.tpl ├── insert.tpl ├── remove.tpl └── update.tpl /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/README.md -------------------------------------------------------------------------------- /conf/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/conf/app.conf -------------------------------------------------------------------------------- /controllers/Base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/controllers/Base.go -------------------------------------------------------------------------------- /controllers/Login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/controllers/Login.go -------------------------------------------------------------------------------- /controllers/Main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/controllers/Main.go -------------------------------------------------------------------------------- /controllers/Operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/controllers/Operation.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/main.go -------------------------------------------------------------------------------- /models/Base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/models/Base.go -------------------------------------------------------------------------------- /models/mongo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/models/mongo.go -------------------------------------------------------------------------------- /routers/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/routers/router.go -------------------------------------------------------------------------------- /static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/img/wait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/static/img/wait.gif -------------------------------------------------------------------------------- /static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/static/js/bootstrap.js -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/jquery.pager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/static/js/jquery.pager.js -------------------------------------------------------------------------------- /static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/static/js/npm.js -------------------------------------------------------------------------------- /tests/default_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/tests/default_test.go -------------------------------------------------------------------------------- /views/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/views/index.tpl -------------------------------------------------------------------------------- /views/layout/base.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/views/layout/base.tpl -------------------------------------------------------------------------------- /views/layout/bread.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/views/layout/bread.tpl -------------------------------------------------------------------------------- /views/layout/js.tpl: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | alert(123) 3 | }); 4 | -------------------------------------------------------------------------------- /views/layout/nav.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/views/layout/nav.tpl -------------------------------------------------------------------------------- /views/layout/table.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/views/layout/table.tpl -------------------------------------------------------------------------------- /views/login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/views/login.tpl -------------------------------------------------------------------------------- /views/maincontroller/post.tpl: -------------------------------------------------------------------------------- 1 | aa 2 | -------------------------------------------------------------------------------- /views/modal/drop.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/views/modal/drop.tpl -------------------------------------------------------------------------------- /views/modal/find.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/views/modal/find.tpl -------------------------------------------------------------------------------- /views/modal/insert.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/views/modal/insert.tpl -------------------------------------------------------------------------------- /views/modal/remove.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/views/modal/remove.tpl -------------------------------------------------------------------------------- /views/modal/update.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/views/modal/update.tpl -------------------------------------------------------------------------------- /views/operation/drop.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/views/operation/drop.tpl -------------------------------------------------------------------------------- /views/operation/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/views/operation/index.tpl -------------------------------------------------------------------------------- /views/operation/insert.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/views/operation/insert.tpl -------------------------------------------------------------------------------- /views/operation/remove.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/views/operation/remove.tpl -------------------------------------------------------------------------------- /views/operation/update.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/29392964/mgweb/HEAD/views/operation/update.tpl --------------------------------------------------------------------------------