Skip to content

Commit

Permalink
[SecurityBundle] added a note about why a user can be logged in but n…
Browse files Browse the repository at this point in the history
…ot authenticated
  • Loading branch information
fabpot committed Mar 15, 2011
1 parent 39504fc commit 11f42a8
Showing 1 changed file with 7 additions and 1 deletion.
Expand Up @@ -33,7 +33,13 @@
</tr>
<tr>
<th>Authenticated?</th>
<td>{{ collector.authenticated ? 'yes' : 'no' }}</td>
<td>
{% if collector.authenticated %}
yes
{% else %}
no {% if not collector.roles|length %}<em>(probably because the user has no roles)</em>{% endif %}
{% endif %}
</td>
</tr>
<tr>
<th>Roles</th>
Expand Down

0 comments on commit 11f42a8

Please sign in to comment.