我的代码:
{% if request.user.is_staff %}
{% extends "base.html" %}
{% load crispy_forms_tags %}
{% block content %}
<div class="content-section">
<form method="POST">
{% csrf_token %}
<fieldset class="form-group">
<legend class="border-bottom mb-4">
Create A Post
</legend>
{{ form|crispy }}
</fieldset>
<div class="form-group">
<button class="btn btn-outline-info" type="submit">
Post
</button>
</div>
</form>
</div>
{% endblock content %}
{% else %}
<head>
<meta http-equiv="refresh" content="5; url=/" />
</head>
<body>
<h1>Restricted Access To Staff!</h1>
<p>You will be redirected to the home page in 5 seconds</p>
</body>
{% endif %}
我不知道为什么它不起作用,这可能与 {% if request.user.is_staff %} 位有关吗?