add logged out page and separate nav template
This commit is contained in:
@ -9,9 +9,7 @@
|
||||
</head>
|
||||
<body>
|
||||
{% block navigation %}
|
||||
<div class="container navigation">
|
||||
NAV
|
||||
</div>
|
||||
{% include "nav.html" %}
|
||||
{% endblock%}
|
||||
|
||||
{% block content %}
|
||||
|
||||
3
templates/nav.html
Normal file
3
templates/nav.html
Normal file
@ -0,0 +1,3 @@
|
||||
<div class="container navigation">
|
||||
SEPARATE NAV for {{ user }}
|
||||
</div>
|
||||
7
templates/registration/logged_out.html
Normal file
7
templates/registration/logged_out.html
Normal file
@ -0,0 +1,7 @@
|
||||
{% extends 'base.html' %}
|
||||
|
||||
{% block title %}Logged out{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<h2>Logged out</h2>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user