摘 要
近年来,家长对孩子的教育问题愈加重视,倡导启蒙教育。因此,许多早教机构应运而生,而随着就够人员的增多,机构的管理成为重中之重。因此,本系统就旨在便于管理员对机构用户,课程的管理,同时使家长们更加了解机构。
本系统的设计过程中使用了Mysql数据库来对机构中的信息进行增删查改,使用Python和Django实现后台的相关逻辑,使用HTML实现前段页面的显示,使用xadmin实现后台管理系系统,以便管理员对数据的操作。本网站包含三类用户:一是家长用户,二是教师,三是管理员。家长用户访问网站查看机构的基本情况;教师向网站添加课程的相关信息;管理员对机构中的所有数据进行维护。通过管理员和教师对网站的维护,是家长能够更加清楚的了解机构,并报名机构。
关键词:Python,Django,后台管理
Abstract
In recent years, parents have paid more and more attention to the education of children and advocated enlightenment education. Therefore, many early education institutions have emerged as the times require, and with the increase of sufficient personnel, the management of the organization has become a top priority. Therefore, the system is designed to facilitate administrators to manage institutional users, courses, and to make parents more aware of the organization.
The design process of this system uses Mysql database to add, delete and modify the information in the organization, use Python and Django to realize the related logic in the background, use HTML to realize the display of the previous page, use xadmin to realize the background management system, so that the administrator The operation of the data. This website contains three types of users: one is the parent user, the second is the teacher, and the third is the administrator. Parent users visit the website to view the basics of the organization; the teacher adds information about the course to the website; the administrator maintains all the data in the organization. Through the maintenance of the website by administrators and teachers, parents can understand the organization more clearly and register the institution.
Key words: Python, Django, Backstage management
目 录
摘 要 I
1 引言 1
1.1项目开发背景 1
1.2 项目开发意义 1
1.3 可行性分析 2
1.3.1 概述 2
1.3.2 技术可行性分析 2
1.3.3 操作(经济)可行性分析 2
2 系统开发技术简介 3
2.1 开发工具简介 3
2.1.1 Pycharm介绍 3
2.1.2 Mysql数据库介绍 3
2.1.3 Navicat for Mysql介绍 3
2.1.4 虚拟环境的安装 4
2.1.5 相关插件的安装 4
2.2 开发语言简介 4
2.2.1 Python介绍 4
2.2.2 Django介绍 5
3 网站需求分析 6
3.1 网站性能需求分析 6
3.2 网站功能需求分析 6
3.2.1 概述 6
3.2.2 用户注册 6
3.2.3 用户登录 7
3.2.4 机构课程分析 7
3.2.5 机构教师分析 7
3.2.6 用户中心分析 8
3.3 用例模型 8
3.3.1 概述 8
3.3.2 管理员用例模型 8
3.3.3 教师用例模型 9
3.3.4 用户用例模型 9
4 网站设计 10
4.1 系统结构设计 10
4.1.1 注册模块 10
4.1.2 登陆模块 11
4.1.3 机构教师管理模块 11
4.1.4 管理员模块 12
4.1.5 注册用户模块 12
4.1.6 普通用户模块 13
4.2 系统数据模型设计 13
4.2.1 E-R图 13
4.2.2 关系模型 15
4.3 数据库设计 16
4.3.1 用户信息表 16
4.3.2 机构教师表 17
4.3.3 机构课程表 17
4.3.4 用户收藏表 18
4.3.5 用户报名表 18
4.4 编码设计 18
4.4.1 Python编码规范 18
4.4.2 HTML编码规范 19
4.5 安全性设计 19
5 网站实现 20
5.1 网站前端页面设计 20
5.1.1 首页设计 20
5.1.2 注册页面设计 21
5.1.3 登录页面设计 22
5.1.4 教师/专家页面设计 23
5.1.5 课程介绍 24
5.1.6 课程报名 25
5.1.7 个人资料页面 26
5.1.8 我的课程页面 27
5.1.9 我的收藏页面 27
5.2.0 本周课表页面 28
5.2 后台管理系统 29
5.2.1 后台管理系统登录 29
5.2.2 后台管理系统表结构 30
5.2.3 用户信息 30
5.2.4 组和权限 31
6 软件测试 33
6.1 测试目的 33
6.2 方法 33
6.3 测试用例及结果分析 34
6.3.1 用户注册模块的测试 34
6.3.2 用户的登录模块的测试 34
6.3.3 前端界面显示模块 34
6.3.5 搜索功能模块 34
6.3.4 用户收藏功能模块 35
6.3.5 用户报名模块 35
6.3.6 用户个人资料模块 35
7 总结 36
致 谢 37
参 考 文 献 38
附 录 39