pyhton(django)之产品功能前端开发

1、安装Bootstrap4前端框架

使用pip即可

2、加入代码

在settings.py中加入以下内容

INSTALLED_APPS = [
'bootstrap4',]

在product文件夹下创建templates文件夹创建product_manage.html 后加入以下内容

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <title>product</title>
    {% load bootstrap4 %}
    {% bootstrap_css %}
    {% bootstrap_javascript %}
</head>
<body role="document">
<!-导航栏-!>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark fixed-top">
<div class="container">
    <a class="navbar-brand" href="#">&nbsp;</a>
    <ul class = "nav justify-content-center"></ul>
    <ul class = "nav justify-content-end">
        <li class="nav-link"><a style="color:white" href ="#">{{ user }}</a> </li>
        <li class="nav-link"><a style="color:white" href ="#">退出</a> </li>

    </ul>
</div>
</nav>
<!- 产品列表 -!>
<div class="row" style="padding-top:20px;">
    <div class = "col-md-11">
        <table class="table table-striped">
            <thead>
            <tr><td>&nbsp;</td></tr>
            <tr><th>ID</th><th>产品名称</th><th>产品描述</th><th>产品负责人</th><th>创建时间</th>
            </tr>
            </thead>
            <tbody>
            { %  for product in products % }
            <tr>
                <td>{{ product.id }}</td>
                <td>{{ product.product_name }}</td>
                <td>{{ product.product_desc }}</td>
                <td>{{ product.producter }}</td>
                <td>{{ product.create_date }}</td>
            </tr>
            { % endfor % }
            </tbody>
        </table>
    </div>
</div>
</body>
</html>

后将views.py更改成proviews.py后加入以下内容

from product.models import Product


# Create your views here.


def product_manage(request):
    username = request.session.get('user', '')
    product_list = Product.objects.all()
    return render(request, 'product_manage.html', {"user": username, "products": product_list})

后将urls.py加入以下内容

path('product_manage/', proviews.product_manage),

3、结果如下:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

过度引用

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值