equal
deleted
inserted
replaced
|
1 {% extends "projrev/base.html" %} |
|
2 {% block content %} |
|
3 <div class="post"> |
|
4 |
|
5 <a name="TemplateInfo"></a> |
|
6 <h1>Access Error</h1> |
|
7 |
|
8 <form enctype="multipart/form-data" method="post" action=""> |
|
9 {% if not_staff %} |
|
10 <div class="access-error"> |
|
11 <p>You are not a reviewer to access this page.</p> |
|
12 </div> |
|
13 {% endif %} |
|
14 {% if not_proposer %} |
|
15 <div class="access-error"> |
|
16 <p>You are a reviewer to and cannot submit a proposal.</p> |
|
17 </div> |
|
18 {% endif %} |
|
19 {% if not_authenticated %} |
|
20 <div class="access-error"> |
|
21 <p>You are not logged in.</p> |
|
22 </div> |
|
23 {% endif %} |
|
24 </form> |
|
25 |
|
26 </div> |
|
27 {% endblock content %} |