blob: 4116c7af1b3f15833d0031061a1bc955394401c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% extends 'base.html' %}
{% load sneak_peek %}
{% block content %}
{% sneak_peek %}
<div>
This will be hidden from users who don't have the sneak peek permission.
</div>
{% endsneak_peek %}
{% endblock %}
|