├── views
├── layout
│ ├── foot.html
│ ├── head.html
│ └── paginator.html
├── auth
│ ├── index.html
│ ├── login.html
│ └── register.html
├── user
│ ├── about.html
│ ├── info.html
│ ├── create.html
│ ├── edit.html
│ ├── list.html
│ └── profile.html
├── home
│ └── index.html
└── team
│ ├── list.html
│ ├── create.html
│ └── edit.html
├── conf
└── app.conf
├── static
├── img
│ └── logo.png
├── select2
│ ├── select2.png
│ ├── select2x2.png
│ ├── select2-spinner.gif
│ └── select2.css
├── layer
│ ├── skin
│ │ ├── default
│ │ │ ├── textbg.png
│ │ │ ├── icon_ext.png
│ │ │ ├── xubox_ico0.png
│ │ │ ├── xubox_title0.png
│ │ │ ├── xubox_loading0.gif
│ │ │ ├── xubox_loading1.gif
│ │ │ ├── xubox_loading2.gif
│ │ │ └── xubox_loading3.gif
│ │ ├── layer.ext.css
│ │ └── layer.css
│ ├── extend
│ │ └── layer.ext.js
│ └── layer.min.js
├── fonts
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.ttf
│ └── glyphicons-halflings-regular.woff
├── css
│ ├── g.css
│ └── select2-bootstrap.css
└── js
│ ├── g.js
│ └── bootstrap.min.js
├── g
├── g.go
└── cfg.go
├── utils
├── uuid.go
├── regexp.go
├── ldap_test.go
└── ldap.go
├── http
├── home
│ ├── home_controller.go
│ └── home_routes.go
├── http.go
├── uic
│ ├── sso_controller.go
│ ├── uic_routes.go
│ ├── team_controller.go
│ ├── auth_controller.go
│ └── user_controller.go
└── base
│ ├── filter.go
│ └── controller.go
├── .gitignore
├── cache
└── cache.go
├── model
├── database.go
└── uic
│ ├── models.go
│ ├── session.go
│ ├── user.go
│ └── team.go
├── main.go
├── cfg.example.json
├── scripts
└── schema.sql
├── README.md
└── control
/views/layout/foot.html:
--------------------------------------------------------------------------------
1 |