码迷,mamicode.com
首页 > Web开发 > 详细

django - templates - base.html

时间:2021-01-15 11:50:35      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:lis   rgba   none   type   content   logout   django   xtend   list   

1.django - templates - base.html

<!--- my furst base html --->
<h3 style="margin:auto;width:50%;" >小萌信息技术开放职位</h3>
<p>
</p>
<hr>

{% block header %}

<a href="/" style="text-decoration: none; color:#007bff">首页</a>
<a href="/joblist" style="text-decoration: none; color:#007bff">职位列表</a>

{% if user.is_authenticated %}
<a href="/accounts/logout" style="text-decoration: none; color:#007bff">退出</a>
{% else %}
<a href="/accounts/login" style="text-decoration: none; color:#007bff">登陆</a>
{% endif %}

{% if user.is_authenticated %}
<p> 终于等到你 {{ user_name }}, 期待加入我们,用技术去探索一个新世界 </p>
{% else %}
<p> "欢迎你,期待加入我们,登陆后可以提交简历." </p>
{% endif %}


{% endblock %}

{% block content %}
{% endblock %}

2.joblist.html扩展base.html

{% extends ‘base.html‘ %}

{% block content %}
终于等到你,期待加入我们,用技术去探索新的技术!
{% if job_list %}
    <ul>
    {% for job in job_list %}
        <li style="color:green"><a href="/job/{{ job.id }} " style="color:green">      {{ job.job_name }}        </a>    &nbsp; {{ job.job_city }}  &nbsp; {{job.job_type}}</li>

    {% endfor %}
    </ul>
{% else %}
        <p> no joblist!!!</p>
{% endif %}

{% endblock %}

3.joblist的效果

 

django - templates - base.html

标签:lis   rgba   none   type   content   logout   django   xtend   list   

原文地址:https://www.cnblogs.com/hixiaowei/p/14277851.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!