In my project management app I have a page that lists all the projects in the db. I want it to be possible to filter the projects, so that for example only the projects where the user is an admin is shown. The code in the template below calls the project_list view with different args depending on what the user clicked on.
What I need help with is the queries the arrows in the view below points at, i.e. for only showing projects where the user is a member and all the projects where the user is neither an admin or a member.
the template:
<h5>Show only projects where you are:</h5>
<div id="filter_div">
<a class="btn btn-success" href="{% url project_list 'admin' %}">Admin</a>
<a class="btn btn-info" href="{% url project_list 'member' %}">Member</a>
<a class="btn" href="{% url project_list 'not_member' %}">Not member</a>
</div>
the view:
def project_list(request, projects_to_show='All'):
if projects_to_show == 'admin':
projects = get_list_or_404(Project.objects.filter(added_by_user = user))
else:
if projects_to_show == 'member':
projects = get_list_or_404(?) // <- only projects where user is a member
else:
if projects_to_show == 'not_member' :
projects = get_list_or_404(?) // <----- only projects where user is NOT admin OR member
projects = get_list_or_404(Project.objects.order_by('name')) // <- all projects (works)
return render(request, 'projects/list.html', {"projects" : projects, "headline" : "All projects"})
The model 'Project' and 'User' has a many-to-many relationship (i.e the table project_users exists in the db). This is the project model:
class Project(models.Model):
... the rest of the fields...
added_by_user = models.ForeignKey(User)
users = models.ManyToManyField(User, related_name='projects')
