Skip to content

Commit

Permalink
Added django-admin link to profile page
Browse files Browse the repository at this point in the history
  • Loading branch information
dlesbre committed May 7, 2021
1 parent 0e7c90d commit 1bcc03c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Version 1.2.8 - 2021-05-06

- Added links to FAQ
- Added django-admin link to admin profile page

## Version 1.2.7 - 2021-05-03

Expand Down
9 changes: 8 additions & 1 deletion accounts/templates/profile.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,14 @@ <h2>Mon compte</h2>

{% if user.is_superuser %}
<ul class="messagelist">
<li class="info">Vous avez les droits d'administrateurs. Aller à la <a href="{% url 'site_admin' %}">page d'administration du site</a></li>
<li class="info">
Vous avez les droits d'administrateurs.
<br>Aller à la <a href="{% url 'site_admin' %}">page d'administration du site</a>
{% if user.is_staff %}
<br>Aller à la <a href="{% url 'admin:index' %}">page d'administration de django</a>
(N'y modifier rien sy vous n'êtes pas sûrs de vous)
{% endif %}
</li>
</ul>{% endif %}

{% if user.profile.is_registered %}
Expand Down
2 changes: 1 addition & 1 deletion home/templates/admin.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ <h2>Page d'administration</h2>
<ul class="messagelist">
<li class="info">
Pour plus d'options d'accès et de modifications, aller à la <a href="{% url 'admin:index' %}">page d'administration de django</a>.
<br>N'y modifiez rien si vous n'êtes pas sur de ce que cela fait.
<br>N'y modifiez rien si vous n'êtes pas sûrs de ce que cela fait.
</li></ul>

<h2>Paramètres du site</h2>
Expand Down

0 comments on commit 1bcc03c

Please sign in to comment.