Python的Django框架完成一个完整的论坛(2.urls.py配置、静态文件)

最终效果:http://www.cnblogs.com/xuyiqing/p/8274912.html

urls.py配置:

"""BlogTest URL Configuration

The `urlpatterns` list routes URLs to views. For more information please see:
    https://docs.djangoproject.com/en/2.0/topics/http/urls/
Examples:
Function views
    1. Add an import:  from my_app import views
    2. Add a URL to urlpatterns:  path(‘‘, views.home, name=‘home‘)
Class-based views
    1. Add an import:  from other_app.views import Home
    2. Add a URL to urlpatterns:  path(‘‘, Home.as_view(), name=‘home‘)
Including another URLconf
    1. Import the include() function: from django.urls import include, path
    2. Add a URL to urlpatterns:  path(‘blog/‘, include(‘blog.urls‘))
"""
from django.contrib import admin
from django.urls import path
from django.conf.urls import url
from web import views
urlpatterns = [
    path(‘admin/‘, admin.site.urls),
    path(‘‘, views.index),
    url(r‘^login/$‘, views.login),
    url(r‘^logout/$‘, views.logout),
    url(r‘^check_code/$‘, views.check_code),
    url(r‘^register/$‘, views.register),
    url(r‘^reply/(?P<username>\w+)/(?P<nid>\d+)$‘, views.reply),
    url(r‘^write/(?P<author_name>\w+).html$‘, views.write),
    url(r‘^delete/(?P<article_id>\d+)/$‘, views.delete),
    url(r‘^edit/(?P<author_name>\w+)/(?P<article_id>\d+).html‘, views.edit),
    url(r‘^all/(?P<article_type_id>\d+).html$‘, views.index, name=‘index‘),
    url(r‘^(?P<article_type_id>\w+)/(?P<author_name>\w+)/(?P<nid>\d+).html$‘, views.detail),
    url(r‘^delete_comment/$‘, views.delete_comment),
    url(r‘^good/(?P<article_id>\d+)/(?P<user_id>\d+)$‘, views.good),
    url(r‘^user_info/(?P<username>\w+)$‘, views.user_info),
    url(r‘^upload-avatar/(?P<nid>\d+)$‘, views.upload_avatar),
    url(r‘^article_manage/(?P<username>\w+)‘, views.article_manage, name=‘article‘),
    url(r‘^comment-reply/(?P<article_id>\d+)/(?P<comment_id>\d+)/(?P<user_nid>\w+)$‘, views.comment_reply),
]

以下是静态文件内容:

静态文件目录:

用到的jquery1.12、bootstrap、font-awesome可以在网上下载到,其他的给出源码:

account.css:

.login {
    width: 400px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #f0f0f0;
    padding: 10px 30px 50px 30px;
    -webkit-box-shadow: 5px 10px 10px rgba(0, 0, 0, .05);
    box-shadow: 5px 10px 10px rgba(0, 0, 0, .05);
}

.register {
    width: 400px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #f0f0f0;
    padding: 10px 30px 50px 30px;
    -webkit-box-shadow: 5px 10px 10px rgba(0, 0, 0, .05);
    box-shadow: 5px 10px 10px rgba(0, 0, 0, .05);
}
.alert{
    padding: 6px;
    margin-bottom: 0;
}

backend.css:

.pg-header {
    min-width: 1190px;
    height: 48px;
    background-color: #2F72AB;
    line-height: 48px;
    overflow: visible;
    font-size: 12px;
}
.pg-header a{
    color: #ffffff;
    text-decoration: none;
}
.pg-header .logo {
    width: 200px;
    overflow: hidden;
    height: 48px;
}

.pg-header .logo img {
    width: 200px;
    height: 40px;
    margin-top: 4px;

}
.pg-header .left-menu{
    font-size: 13px;
}
.pg-header .left-menu .menu-item{
    display: inline-block;
    padding: 0 15px;
    cursor: pointer;
    position: relative;
}
.pg-header .left-menu .menu-item:hover {
    background-color: #337ab7;

}
.pg-header .left-menu .menu-item .more-info {
    display: none;
    position: absolute;
    top: 48px;
    left: 0;
    border: 1px solid rgba(0, 0, 0, .15);
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    background-color: #fff;
    color: #333;
}
.pg-header .left-menu .menu-item:hover .more-info {
    display: block;
}
.pg-header .left-menu .menu-item .more-info .more-item {
    display: block;
    min-width: 120px;
    padding: 0 15px;
    line-height: 35px;
    text-decoration: none;
    color: #000000;

}
.pg-header .left-menu .menu-item .more-info .more-item:hover{
    background-color: #f1f0f0;
}

.pg-header .right-menu .user-menu {
    padding: 0 8px;
    cursor: pointer;
    color: #ffffff;
}
.pg-header .right-menu .user-menu .bg-success{
    background-color: #5cb85c !important;
    color: #ffffff;
}
.pg-header .right-menu .user-menu .bg-danger{
    background-color: #d9534f !important;
    color: #ffffff;
}

.pg-header .right-menu .user-menu:hover {
    background-color: #337ab7;

}

.pg-header .right-menu .user-info {
    padding: 0 30px 0 10px;
    height: 48px;
    position: relative;
}

.pg-header .right-menu .user-info:hover .avatar {
    background-color: #337ab7;
}

.pg-header .right-menu .user-info .avatar {
    display: inline-block;
    padding: 0 10px;
    height: 48px;
}

.pg-header .right-menu .user-info .more-info {
    display: none;
    position: absolute;
    top: 48px;
    right: 20px;
    border: 1px solid rgba(0, 0, 0, .15);
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    background-color: #fff;
    color: #333;
    z-index: 100;
}

.pg-header .right-menu .user-info:hover .more-info {
    display: block;
}
.pg-header .right-menu .user-info .more-info .more-item {
    display: block;
    min-width: 160px;
    padding: 0 15px;
    line-height: 35px;
    text-decoration: none;
    color: #000000;

}
.pg-header .right-menu .user-info .more-info .more-item:hover{
    background-color: #f1f0f0;
}

.pg-body{
    position: absolute;
    z-index: 90;
    top:50px;
    bottom: 0;
    right: 0;
    left: 0;
    min-width: 1190px;
}
.pg-body .menu{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 200px;
    border: 1px solid #dddddd;
}
.pg-body .menu .menu-item{
    display: block;
    padding: 8px 8px;
    border-bottom: 1px dashed #dddddd;
    text-decoration: none;
}

.pg-body .content{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 205px;
    border: 1px solid #dddddd;
    overflow: scroll;
}

commons.css:

img {
    border: 0;
}

.left {
    float: left;
}

.right {
    float: right;
}

edmure.css:

.navbar {
    border-radius: 0;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

.hot-recommend, .hot-comment {
    border-radius: 0;
    border: 0;
    margin-top: 20px;
}

.hot-recommend .panel-heading, .hot-comment .panel-heading {
    border-radius: 0;
}

.hot-recommend .panel-body, .hot-comment .panel-body {
    padding: 5px 10px;
}

.hot-recommend li, .hot-comment li {
    padding: 2px 0;
}
.navbar-right li a{
    padding-left: 5px;
    padding-right: 5px;
}

home.css:

.pg-header{
    height: 80px;
    background-color: #89b1c6;
    position: relative;
    color: #ffffff;
}
.pg-header .title{
    font-size: 30px;
    line-height: 60px;
    margin-left: 20px;
}
.pg-header .menu-list{
    position: absolute;
    bottom: 0;
    right: 20px;
}
.pg-header .menu-list a{
    color: #ffffff;
    display: inline-block;
    padding: 3px 5px;
    margin: 0 5px;
    background-color: #006699;
}

.pg-body{
    min-width: 980px;
    position: relative;
}
.pg-body .body-menu{
    position: absolute;
    left: 0;
    width: 280px;
}
.pg-body .body-content{
    position: absolute;
    right: 0;
    left: 280px;
    overflow: scroll;
}

.pg-body .body-content .art-title{
    font-size: 24px;
    font-weight: bold;
    border-bottom: 1px solid #dddddd;
    padding: 5px;
}
.pg-body .body-content .art-content{
    font-size: 12px;
}
.pg-body .body-content .art-comment .comment-list {
    padding: 5px;
}
.pg-body .body-content .art-comment .comment-list .comment-item{
    border-bottom: 1px solid #dddddd;

}
.pg-body .body-content .art-comment .comment-list .reply-title{
    margin: 5px 0;
}
.pg-body .body-content .art-comment .comment-list .reply-title .user-info{
    float: left;
}
.pg-body .body-content .art-comment .comment-list .reply-title .reply{
    float: right;
}

.pg-body .body-content .summary-list{

}
.pg-body .body-content .summary-list .summary-item{
    border-bottom: 1px solid #dddddd;padding: 8px 0;
}

.pg-body .body-content .title-list .row-item{
    border-bottom: 1px solid #dddddd;padding: 8px 0;
}

row-avatar.css:

.article-item{
    font-size: 13px;
    border-bottom: 1px dashed #dddddd;
    padding:  5px 0;
}
.article-item h3{
    margin-top: 10px;
    font-size: 20px;
}

.article-item .avatar{
    border: 1px solid #d5d5d5;margin-right: 5px;
}

.article-item .avatar img{
    width: 70px;height: 70px;padding: 1px;

}
.article-item .footers{
    padding: 5px 0 0 0;
}

.article-item .footers .ele{
    margin: 0 10px;
}

accordion.js:

(function($){

    /*
     上下固定菜单:初始化左侧菜单位置
     */
    function initFixedAccordion(){
        var currentIndex = $(‘.fixed-accordion .accordion-item.active‘).index();
        currentIndex = currentIndex == -1 ? 0:currentIndex;
        changeFixedAccordion(currentIndex);
    }

    /*
     上下固定菜单:改变的左侧菜单
     */
    function changeFixedAccordion(currentIndex){

        var $accordionItem = $(‘.fixed-accordion .accordion-item‘);
        var itemLength = $accordionItem.length;
        var accordionHeight = $(‘.fixed-accordion‘).outerHeight();
        var headerHeight = $accordionItem.find(‘.accordion-header‘).outerHeight();
        var contentHeight = accordionHeight - 3 - headerHeight * itemLength;

        $accordionItem.each(function(k,v){
            $(this).removeAttr(‘style‘);
            if(currentIndex > k){
                $(this).css(‘top‘, k* headerHeight);
                $(this).removeClass(‘active‘);
            }else if(currentIndex == k){
                $(this).addClass(‘active‘);
                $(this).css(‘top‘, k* headerHeight);
                $(this).find(‘.accordion-content‘).css(‘height‘, contentHeight);
            }else{
                var index = itemLength - k - 1;
                $(this).removeClass(‘active‘);
                $(this).css(‘bottom‘, index* headerHeight);
            }
        });
    }

    /*
     上下固定菜单:为菜单绑定点击事件
     */
    function bindFixedAccordionEvent(){
        $(‘.fixed-accordion .accordion-header‘).on(‘click‘, function(){
            var itemIndex = $(this).parent().index();

            changeFixedAccordion(itemIndex);
        })
    }

    /*
     普通菜单:为菜单绑定点击事件
     */
    function bindEasyAccordionEvent(){
        $(‘.easy-accordion .accordion-header‘).on(‘click‘, function(){
            $(this).parent().addClass(‘active‘);
            $(this).parent().siblings().removeClass(‘active‘);
        });
    }
    $.extend({
        easyAccordion: function () {
            bindEasyAccordionEvent();
        },
        fixedAccordion: function () {
            initFixedAccordion();
            bindFixedAccordionEvent();
        }
    })
})(jQuery);

timg.py是网页背景图片

imgs文件夹内是用户头像以及默认用户头像

原文地址:https://www.cnblogs.com/xuyiqing/p/8275030.html

时间: 2024-10-15 16:10:35

Python的Django框架完成一个完整的论坛(2.urls.py配置、静态文件)的相关文章

Python的Django框架完成一个完整的论坛(源码以及思路)

一个完整的论坛,登录.注册.发表.头像.点赞.评论.分页.阅读排行等 使用Django2,Python3.5 开发工具:Pycharm5 需要的知识:Python基础知识,Django原理的理解以及使用,HTML,CSS,JS,jQuery等前端知识的简单理解,对数据库的简单理解 需要的知识可以参考的我的CSDN博客:http://blog.csdn.net/qq_41144008 源码 1:http://www.cnblogs.com/xuyiqing/p/8274959.html 2:htt

在Python的Django框架中加载模版的方法

在Python的Django框架中加载模版的方法 为了减少模板加载调用过程及模板本身的冗余代码,Django 提供了一种使用方便且功能强大的 API ,用于从磁盘中加载模板, 要使用此模板加载API,首先你必须将模板的保存位置告诉框架. 设置的保存文件就是settings.py. 如果你是一步步跟随我们学习过来的,马上打开你的settings.py配置文件,找到TEMPLATE_DIRS这项设置吧. 它的默认设置是一个空元组(tuple),加上一些自动生成的注释. TEMPLATE_DIRS =

Python的Django框架中的Context使用

Python的Django框架中的Context使用 一旦你创建一个 Template 对象,你可以用 context 来传递数据给它. 一个context是一系列变量和它们值的集合. context在Django里表现为 Context 类,在 django.template 模块里. 她的构造函数带有一个可选的参数: 一个字典映射变量和它们的值. 调用 Template 对象 的 render() 方法并传递context来填充模板: >>> from django.template

Python的Django框架中的Cookie相关处理

Python的Django框架中的Cookie相关处理 浏览器的开发者在很早的时候就已经意识到, HTTP's 的无状态会对Web开发者带来很大的问题,于是(cookies)应运而生. cookies 是浏览器为 Web 服务器存储的一小段信息. 每次浏览器从某个服务器请求页面时,它向服务器回送之前收到的cookies 来看看它是怎么工作的. 当你打开浏览器并访问 google.com ,你的浏览器会给Google发送一个HTTP请求,起始部分就象这样: GET / HTTP/1.1 Host:

【ABAP系列】SAP 一个完整的SAP的Abap例子(idoc,edi文件的相互转换)

公众号:SAP Technical 本文作者:matinal 原文出处:http://www.cnblogs.com/SAPmatinal/ 原文链接:[ABAP系列]SAP 一个完整的SAP的Abap例子(idoc,edi文件的相互转换) 前言部分 大家可以关注我的公众号,公众号里的排版更好,阅读更舒适. 正文部分 ? *&---------------------------------------------------------------------* *& Report Z_

Python之Django框架

1.Django简介 Python下有多款不同的 Web 框架,Django是最有代表性的一种.许多成功的网站和APP都基于Django. Django是一个开源的Web应用框架,由Python写成. Django采用了MVC的软件设计模式,即模型M,视图V和控制器C. 2.Django的特点 1) 强大的数据库功能:用python的类继承,几行代码就可以拥有一个动态的数据库操作API,如果需要也能执行SQL语句. 2) 自带的强大的后台功能:几行代码就让网站拥有一个强大的后台,轻松管理内容.

python使用Django制作第一个web页面

第一步:打开pycharm,点击File>New File 选择Django,填写完点击Create创建如下图: 第二步:项目名和应用名都写的web,目录列表如下: 第三步:将web目录下面的view.py改成 from django.http import HttpResponse def hello(request): return HttpResponse("<h3>使用Django的第一个web页面</h3><hr>") 第四步:将ur

Python:Django框架开发数据可视化网站

Step 0: 使用新的 virtualenv 环境 建议使用 1.11.4 版本的 Django $ virtualenv --no-site-packages pyecharts-env $ source pyecharts-env/bin/activate $ pip install django==1.11.4 $ pip install pyecharts Step 1: 新建一个 django 项目 $ django-admin startproject myechartsite 创

Python之Django框架执行流程简介

我为大家简单阐述一下Django框架执行的大概流程. Django框架的执行流程    1.浏览器发送请求    2.服务器接收请求并将请求转发给Django框架    3.框架处理请求,如果是请求数据就去找model,如果请求时模版就去找template,然后将模板或数据读取并返回给服务器一个相应.    4.服务器再将相应转发给客户端 原文地址:https://www.cnblogs.com/chao666/p/12093912.html