Showing and hiding menu items in django based on a non-permissions criteria?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I have a field on a Company
called leave_approvers
which is a ManyToManyField
to Users
.
The leave_approvers
can approve leave of other users in the company they are a leave approver for. They also receive an email when leave is requested.
I would now like to show or hide the Approve Leave
tab in the main layout based on whether the user is a leave_approver
.
Is the decision to have a
leave_approver
field flawed as I should be using the built in authorisation or something like django-guardian. Note that I am sending an email to theleave_approvers
and that would meanCan I just make a query in the
base.html
to check if a user is aleave_approver
. How can this be done and surely there is a performance hit?
python django
add a comment |
I have a field on a Company
called leave_approvers
which is a ManyToManyField
to Users
.
The leave_approvers
can approve leave of other users in the company they are a leave approver for. They also receive an email when leave is requested.
I would now like to show or hide the Approve Leave
tab in the main layout based on whether the user is a leave_approver
.
Is the decision to have a
leave_approver
field flawed as I should be using the built in authorisation or something like django-guardian. Note that I am sending an email to theleave_approvers
and that would meanCan I just make a query in the
base.html
to check if a user is aleave_approver
. How can this be done and surely there is a performance hit?
python django
Hi! How did you solve your problem? I'm facing similar, to display menu items set based on groups user in.
– Михаил Павлов
Nov 23 '18 at 5:53
@МихаилПавлов Just answered the question, I hope it gives you an idea
– surfer190
Nov 23 '18 at 13:31
add a comment |
I have a field on a Company
called leave_approvers
which is a ManyToManyField
to Users
.
The leave_approvers
can approve leave of other users in the company they are a leave approver for. They also receive an email when leave is requested.
I would now like to show or hide the Approve Leave
tab in the main layout based on whether the user is a leave_approver
.
Is the decision to have a
leave_approver
field flawed as I should be using the built in authorisation or something like django-guardian. Note that I am sending an email to theleave_approvers
and that would meanCan I just make a query in the
base.html
to check if a user is aleave_approver
. How can this be done and surely there is a performance hit?
python django
I have a field on a Company
called leave_approvers
which is a ManyToManyField
to Users
.
The leave_approvers
can approve leave of other users in the company they are a leave approver for. They also receive an email when leave is requested.
I would now like to show or hide the Approve Leave
tab in the main layout based on whether the user is a leave_approver
.
Is the decision to have a
leave_approver
field flawed as I should be using the built in authorisation or something like django-guardian. Note that I am sending an email to theleave_approvers
and that would meanCan I just make a query in the
base.html
to check if a user is aleave_approver
. How can this be done and surely there is a performance hit?
python django
python django
asked Jan 15 '18 at 7:38
surfer190surfer190
3,928854105
3,928854105
Hi! How did you solve your problem? I'm facing similar, to display menu items set based on groups user in.
– Михаил Павлов
Nov 23 '18 at 5:53
@МихаилПавлов Just answered the question, I hope it gives you an idea
– surfer190
Nov 23 '18 at 13:31
add a comment |
Hi! How did you solve your problem? I'm facing similar, to display menu items set based on groups user in.
– Михаил Павлов
Nov 23 '18 at 5:53
@МихаилПавлов Just answered the question, I hope it gives you an idea
– surfer190
Nov 23 '18 at 13:31
Hi! How did you solve your problem? I'm facing similar, to display menu items set based on groups user in.
– Михаил Павлов
Nov 23 '18 at 5:53
Hi! How did you solve your problem? I'm facing similar, to display menu items set based on groups user in.
– Михаил Павлов
Nov 23 '18 at 5:53
@МихаилПавлов Just answered the question, I hope it gives you an idea
– surfer190
Nov 23 '18 at 13:31
@МихаилПавлов Just answered the question, I hope it gives you an idea
– surfer190
Nov 23 '18 at 13:31
add a comment |
1 Answer
1
active
oldest
votes
After consideration making use of django permissions (which are added to the context via a context processor automatically) is the best route in my opinion.
Using something like this in the template:
{% if perms.foo.can_vote %}
However, in my case I cut corners and make a query for all the leave approvers in the base template which is much slower than the prebuilt perms
in the context.
{% if user in user.company.leave_approvers.all %}
<li role="separator" class="divider"></li>
<li><a href="{% url 'leave:pending' %}">Pending Leave Approval</a></li>
{% endif %}
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f48258687%2fshowing-and-hiding-menu-items-in-django-based-on-a-non-permissions-criteria%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
After consideration making use of django permissions (which are added to the context via a context processor automatically) is the best route in my opinion.
Using something like this in the template:
{% if perms.foo.can_vote %}
However, in my case I cut corners and make a query for all the leave approvers in the base template which is much slower than the prebuilt perms
in the context.
{% if user in user.company.leave_approvers.all %}
<li role="separator" class="divider"></li>
<li><a href="{% url 'leave:pending' %}">Pending Leave Approval</a></li>
{% endif %}
add a comment |
After consideration making use of django permissions (which are added to the context via a context processor automatically) is the best route in my opinion.
Using something like this in the template:
{% if perms.foo.can_vote %}
However, in my case I cut corners and make a query for all the leave approvers in the base template which is much slower than the prebuilt perms
in the context.
{% if user in user.company.leave_approvers.all %}
<li role="separator" class="divider"></li>
<li><a href="{% url 'leave:pending' %}">Pending Leave Approval</a></li>
{% endif %}
add a comment |
After consideration making use of django permissions (which are added to the context via a context processor automatically) is the best route in my opinion.
Using something like this in the template:
{% if perms.foo.can_vote %}
However, in my case I cut corners and make a query for all the leave approvers in the base template which is much slower than the prebuilt perms
in the context.
{% if user in user.company.leave_approvers.all %}
<li role="separator" class="divider"></li>
<li><a href="{% url 'leave:pending' %}">Pending Leave Approval</a></li>
{% endif %}
After consideration making use of django permissions (which are added to the context via a context processor automatically) is the best route in my opinion.
Using something like this in the template:
{% if perms.foo.can_vote %}
However, in my case I cut corners and make a query for all the leave approvers in the base template which is much slower than the prebuilt perms
in the context.
{% if user in user.company.leave_approvers.all %}
<li role="separator" class="divider"></li>
<li><a href="{% url 'leave:pending' %}">Pending Leave Approval</a></li>
{% endif %}
edited Jan 19 at 14:54
answered Nov 23 '18 at 13:31
surfer190surfer190
3,928854105
3,928854105
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f48258687%2fshowing-and-hiding-menu-items-in-django-based-on-a-non-permissions-criteria%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Hi! How did you solve your problem? I'm facing similar, to display menu items set based on groups user in.
– Михаил Павлов
Nov 23 '18 at 5:53
@МихаилПавлов Just answered the question, I hope it gives you an idea
– surfer190
Nov 23 '18 at 13:31