├── .idea ├── encodings.xml ├── misc.xml ├── modules.xml ├── movie.iml └── vcs.xml ├── README.md ├── app.py ├── app ├── __init__.py ├── admin │ ├── __init__.py │ └── views.py ├── home │ ├── __init__.py │ ├── forms.py │ └── views.py ├── models.py ├── static │ ├── anmi │ │ └── __init__.py │ └── tpl │ │ └── 1-index-animation │ │ ├── css │ │ └── style.css │ │ ├── js │ │ ├── jquery.js │ │ └── script.js │ │ └── main_banner │ │ ├── big0020150102211033.jpg │ │ ├── big0120150101183428.jpg │ │ ├── big0320150101183351.jpg │ │ ├── big0420150101224343.jpg │ │ └── big0720150102210934.jpg ├── templates │ ├── __init__.py │ ├── admin │ │ ├── __init__.py │ │ ├── admin.html │ │ ├── admin_add.html │ │ ├── admin_list.html │ │ ├── adminloginlog_list.html │ │ ├── auth_add.html │ │ ├── auth_edit.html │ │ ├── auth_list.html │ │ ├── comment_list.html │ │ ├── grid.html │ │ ├── index.html │ │ ├── login.html │ │ ├── movie_add.html │ │ ├── movie_edit.html │ │ ├── movie_list.html │ │ ├── moviecol_list.html │ │ ├── oplog_list.html │ │ ├── preview_add.html │ │ ├── preview_edit.html │ │ ├── preview_list.html │ │ ├── pwd.html │ │ ├── role_add.html │ │ ├── role_edit.html │ │ ├── role_list.html │ │ ├── tag_add.html │ │ ├── tag_edit.html │ │ ├── tag_list.html │ │ ├── user_list.html │ │ ├── user_view.html │ │ └── userloginlog_list.html │ ├── home │ │ ├── 404.html │ │ ├── __init__.py │ │ ├── animation.html │ │ ├── comments.html │ │ ├── home.html │ │ ├── index.html │ │ ├── layout.html │ │ ├── login.html │ │ ├── loginlog.html │ │ ├── menu.html │ │ ├── moviecol.html │ │ ├── play.html │ │ ├── pwd.html │ │ ├── register.html │ │ ├── search.html │ │ ├── user.html │ │ └── video.html │ └── ui │ │ ├── __init__.py │ │ ├── admin_page.html │ │ ├── comment_page.html │ │ ├── home_page.html │ │ └── s_page.html └── tttt.py └── manage.py /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/movie.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/.idea/movie.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app.py -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/admin/__init__.py -------------------------------------------------------------------------------- /app/admin/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/admin/views.py -------------------------------------------------------------------------------- /app/home/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/home/__init__.py -------------------------------------------------------------------------------- /app/home/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/home/forms.py -------------------------------------------------------------------------------- /app/home/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/home/views.py -------------------------------------------------------------------------------- /app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/models.py -------------------------------------------------------------------------------- /app/static/anmi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/static/anmi/__init__.py -------------------------------------------------------------------------------- /app/static/tpl/1-index-animation/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/static/tpl/1-index-animation/css/style.css -------------------------------------------------------------------------------- /app/static/tpl/1-index-animation/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/static/tpl/1-index-animation/js/jquery.js -------------------------------------------------------------------------------- /app/static/tpl/1-index-animation/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/static/tpl/1-index-animation/js/script.js -------------------------------------------------------------------------------- /app/static/tpl/1-index-animation/main_banner/big0020150102211033.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/static/tpl/1-index-animation/main_banner/big0020150102211033.jpg -------------------------------------------------------------------------------- /app/static/tpl/1-index-animation/main_banner/big0120150101183428.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/static/tpl/1-index-animation/main_banner/big0120150101183428.jpg -------------------------------------------------------------------------------- /app/static/tpl/1-index-animation/main_banner/big0320150101183351.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/static/tpl/1-index-animation/main_banner/big0320150101183351.jpg -------------------------------------------------------------------------------- /app/static/tpl/1-index-animation/main_banner/big0420150101224343.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/static/tpl/1-index-animation/main_banner/big0420150101224343.jpg -------------------------------------------------------------------------------- /app/static/tpl/1-index-animation/main_banner/big0720150102210934.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/static/tpl/1-index-animation/main_banner/big0720150102210934.jpg -------------------------------------------------------------------------------- /app/templates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/__init__.py -------------------------------------------------------------------------------- /app/templates/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/__init__.py -------------------------------------------------------------------------------- /app/templates/admin/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/admin.html -------------------------------------------------------------------------------- /app/templates/admin/admin_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/admin_add.html -------------------------------------------------------------------------------- /app/templates/admin/admin_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/admin_list.html -------------------------------------------------------------------------------- /app/templates/admin/adminloginlog_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/adminloginlog_list.html -------------------------------------------------------------------------------- /app/templates/admin/auth_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/auth_add.html -------------------------------------------------------------------------------- /app/templates/admin/auth_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/auth_edit.html -------------------------------------------------------------------------------- /app/templates/admin/auth_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/auth_list.html -------------------------------------------------------------------------------- /app/templates/admin/comment_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/comment_list.html -------------------------------------------------------------------------------- /app/templates/admin/grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/grid.html -------------------------------------------------------------------------------- /app/templates/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/index.html -------------------------------------------------------------------------------- /app/templates/admin/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/login.html -------------------------------------------------------------------------------- /app/templates/admin/movie_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/movie_add.html -------------------------------------------------------------------------------- /app/templates/admin/movie_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/movie_edit.html -------------------------------------------------------------------------------- /app/templates/admin/movie_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/movie_list.html -------------------------------------------------------------------------------- /app/templates/admin/moviecol_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/moviecol_list.html -------------------------------------------------------------------------------- /app/templates/admin/oplog_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/oplog_list.html -------------------------------------------------------------------------------- /app/templates/admin/preview_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/preview_add.html -------------------------------------------------------------------------------- /app/templates/admin/preview_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/preview_edit.html -------------------------------------------------------------------------------- /app/templates/admin/preview_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/preview_list.html -------------------------------------------------------------------------------- /app/templates/admin/pwd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/pwd.html -------------------------------------------------------------------------------- /app/templates/admin/role_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/role_add.html -------------------------------------------------------------------------------- /app/templates/admin/role_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/role_edit.html -------------------------------------------------------------------------------- /app/templates/admin/role_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/role_list.html -------------------------------------------------------------------------------- /app/templates/admin/tag_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/tag_add.html -------------------------------------------------------------------------------- /app/templates/admin/tag_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/tag_edit.html -------------------------------------------------------------------------------- /app/templates/admin/tag_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/tag_list.html -------------------------------------------------------------------------------- /app/templates/admin/user_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/user_list.html -------------------------------------------------------------------------------- /app/templates/admin/user_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/user_view.html -------------------------------------------------------------------------------- /app/templates/admin/userloginlog_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/admin/userloginlog_list.html -------------------------------------------------------------------------------- /app/templates/home/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/home/404.html -------------------------------------------------------------------------------- /app/templates/home/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/home/__init__.py -------------------------------------------------------------------------------- /app/templates/home/animation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/home/animation.html -------------------------------------------------------------------------------- /app/templates/home/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/home/comments.html -------------------------------------------------------------------------------- /app/templates/home/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/home/home.html -------------------------------------------------------------------------------- /app/templates/home/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/home/index.html -------------------------------------------------------------------------------- /app/templates/home/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/home/layout.html -------------------------------------------------------------------------------- /app/templates/home/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/home/login.html -------------------------------------------------------------------------------- /app/templates/home/loginlog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/home/loginlog.html -------------------------------------------------------------------------------- /app/templates/home/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/home/menu.html -------------------------------------------------------------------------------- /app/templates/home/moviecol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/home/moviecol.html -------------------------------------------------------------------------------- /app/templates/home/play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/home/play.html -------------------------------------------------------------------------------- /app/templates/home/pwd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/home/pwd.html -------------------------------------------------------------------------------- /app/templates/home/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/home/register.html -------------------------------------------------------------------------------- /app/templates/home/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/home/search.html -------------------------------------------------------------------------------- /app/templates/home/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/home/user.html -------------------------------------------------------------------------------- /app/templates/home/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/home/video.html -------------------------------------------------------------------------------- /app/templates/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/templates/ui/admin_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/ui/admin_page.html -------------------------------------------------------------------------------- /app/templates/ui/comment_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/ui/comment_page.html -------------------------------------------------------------------------------- /app/templates/ui/home_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/ui/home_page.html -------------------------------------------------------------------------------- /app/templates/ui/s_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/templates/ui/s_page.html -------------------------------------------------------------------------------- /app/tttt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/app/tttt.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutsyzhan/movie/HEAD/manage.py --------------------------------------------------------------------------------