基于Django的Python视频点播网站HTML+JavaScript+CSS设计源码地址
该项目是一款基于Django框架的Python视频点播网站源码,包含116个文件,涵盖48个HTML文件、34个Python文件、20个JavaScript文件、5个CSS文件、2个PNG图片文件、2个pyc字节码文件、1个Markdown文件、1个文本文件、1个ICO图标文件和1个JPG图片文件。该网站界面采用HTML、JavaScript和CSS精心设计,提供流畅的用户体验。
关键词
Django Python HTML JavaScript CSS
目录结构
├── __init__.py ├── comment ├── __init__.py ├── admin.py ├── apps.py ├── models.py ├── tests.py ├── urls.py ├── views.py ├── helpers.py ├── manage.py ├── myadmin ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── models.py ├── tests.py ├── urls.py ├── views.py ├── readme.txt ├── requirements.txt ├── static ├── css ├── admin.css ├── dropload.css ├── reset.css ├── semantic.custom.css ├── style.css ├── img ├── favicon.ico ├── img_ad_banner.jpg ├── img_default_avatar.png ├── logo.png ├── js ├── csrftoken.js ├── detail.js ├── dropload.js ├── header.js ├── left_nav.js ├── load_comments.js ├── login.js ├── myadmin ├── admin_nav.js ├── classification_list.js ├── comment_list.js ├── feedback_list.js ├── send_mail.js ├── user_list.js ├── video_list.js ├── video_upload.js ├── upload ├── jquery.fileupload.js ├── jquery.iframe-transport.js ├── jquery.js ├── jquery.ui.widget.js ├── spark-md5.js ├── templates ├── base ├── base.html ├── footer.html ├── form_errors.html ├── form_messages.html ├── header.html ├── left_nav.html ├── page_nav.html ├── comment ├── comment_single.html ├── myadmin ├── base.html ├── classification_add.html ├── classification_add_success.html ├── classification_edit.html ├── classification_list.html ├── classification_list_modal.html ├── comment_list.html ├── comment_list_modal.html ├── feedback_list.html ├── feedback_list_modal.html ├── index.html ├── login.html ├── mail_template.html ├── page_nav.html ├── setting.html ├── subscribe.html ├── user_add.html ├── user_add_success.html ├── user_edit.html ├── user_list.html ├── user_list_modal.html ├── video_add.html ├── video_edit.html ├── video_list.html ├── video_list_modal.html ├── video_publish.html ├── video_publish_success.html ├── registration ├── change_password.html ├── login.html ├── signup.html ├── users ├── collect_videos.html ├── feedback.html ├── like_videos.html ├── profile.html ├── subscribe.html ├── video ├── ad.html ├── detail.html ├── index.html ├── recommend.html ├── search.html ├── users ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── models.py ├── tests.py ├── urls.py ├── views.py ├── uwsgi.ini ├── video ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── models.py ├── templatetags ├── __init__.py ├── __pycache__ ├── __init__.cpython-37.pyc ├── video_tag.cpython-37.pyc ├── video_tag.py ├── tests.py ├── urls.py ├── views.py ├── videoproject ├── __init__.py ├── settings.py ├── urls.py ├── wsgi.py