blob: 5e44abcd45f2a1d20f4d820af0d5145c06f6a7a8 (
plain)
1
2
3
4
5
6
7
8
9
|
{% extends "base.html" %}
{% block title %}
{{instance}} is non-public
{% endblock %}
{% block content %}
<h3>Non-public object requested by anonymous user</h3>
The object you requested, {{instance}}, is only viewable for logged-in users. This may be due to copyright or privacy concerns.
{% endblock %}
|