BBS forum management system written based on Python

Click the link below to get the source code resources:
https://download.csdn.net/download/qq_64505944/87971446?spm=1001.2014.3001.5503
insert image description here

"BBS Q&A Community" program instructions
Run the command "python manage.py run" in the virtual environment to start the project. After the startup is successful, enter the URL "127.0.0.1:9000" in the browser to enter the homepage of the BBS Q&A community. As shown in Figure 1.
insert image description here

Figure 1 Homepage
On the homepage, you can filter the list of posts based on status and tags, view by status as shown in Figure 2, and view by tag as shown in Figure 3.

Figure 2 View by status

Figure 3 View by label Select
a post and click to view the details of the post, as shown in Figure 4.

Figure 4 View post details
Only after the user logs in can post and reply. So users need to register first, and then log in. Registration and login are on the same page, click the "Register" button to realize the registration function, and click the "Login" button to realize the login function, as shown in Figure 5.

Figure 5 Login registration page
Figure 6 shows the posting page, and Figure 7 shows the posting page.

Figure 6 post page

Figure 7 Reply page
The answer acceptance page is shown in Figure 8, and the page showing the number of replies is shown in Figure 9.

Figure 8 Accept the answer

Figure 9 shows the number of replies

Guess you like

Origin blog.csdn.net/qq_64505944/article/details/131475428