This chapter is accompanied by video tutorials :Python-Django Develop personal blog from scratch _ Bili, Bili _bilibili
One 、 stay base Import login registration in url, And judge whether the user logs in , Display the user name
{% if user.is_authenticated %}
<div class="buttons">
<a class="button is-primary" href="{% url 'users:user_profile' %}" target="_blank">
<strong> {
{ request.user.username }}</strong>
</a>
<a href="{% url 'users:logout' %}" class="button is-primary"> sign out </a>
</div>
{% else %}
<div class="buttons">
<a class="button is-primary" href="{% url 'users:register' %}" target="_blank">
<strong> register </strong>
</a>
<a class="button is-light" href="{% url 'user