Re: Django: get profiles having auth.Group as foreign key

2015-02-19 Thread Collin Anderson
Hi, Sorry for the late reply. Do you just want something like this? {% for dashboard in group.dashboard_set.all %} {{ dashboard.d_name }} etc {% endfor %} Collin On Tuesday, February 10, 2015 at 12:41:15 AM UTC-5, itsj...@gmail.com wrote: > > I have an model which uses auth.models Group as fo

Django: get profiles having auth.Group as foreign key

2015-02-10 Thread itsjay040
I have an model which uses auth.models Group as foreign key called Dashboard:- class Dashboard(models.Model): d_name = models.CharField(max_length=200) d_description = models.CharField(max_length=200) d_url = models.CharField(max_length=200) d_status = mode