Re: Django - What is the best approach to handle multiple user types…and route the HTML pages based on this?

2020-04-26 Thread 王祥
You don't need to create SchoolAdmin model. You can create a admin group and add user to it or even just use the is_superuser field. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from

Re: Django - What is the best approach to handle multiple user types…and route the HTML pages based on this?

2020-04-26 Thread Mike Dewhirst
On 27/04/2020 5:04 am, Mayank Tripathi wrote: I'm making a small test project with below user types: School Admin, Teacher, Student, Parent. And each user type will have different Permissions like School Admin has full access... Parents can only view their Childern's Activity. Teacher can see

Django - What is the best approach to handle multiple user types…and route the HTML pages based on this?

2020-04-26 Thread Momin Imtiaz
following -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.go

Re: Django - What is the best approach to handle multiple user types…and route the HTML pages based on this?

2020-04-26 Thread Sunday Iyanu Ajayi
You can use create user group on the django admin *AJAYI Sunday * (+234) 806 771 5394 *sunnexaj...@gmail.com * On Sun, Apr 26, 2020 at 8:05 PM Mayank Tripathi wrote: > I'm making a small test project with below user types: School Admin, > Teacher, Student, Parent. And each user type will have

Django - What is the best approach to handle multiple user types…and route the HTML pages based on this?

2020-04-26 Thread Mayank Tripathi
I'm making a small test project with below user types: School Admin, Teacher, Student, Parent. And each user type will have different Permissions like School Admin has full access... Parents can only view their Childern's Activity. Teacher can see all students but can add / edit marks for the

Re: What is the best approach

2017-06-10 Thread Melvyn Sopacua
On Friday 09 June 2017 23:26:57 Arshdeep Singh wrote: > down votefavorite > > django#> > > I was thinking about making a Hostel Allocation Web application. It > has models, Student, Room, Hostel. What I want is to create a >

What is the best approach

2017-06-09 Thread Arshdeep Singh
down votefavorite I was thinking about making a Hostel Allocation Web application. It has models, Student, Room, Hostel. What I want is to create a function that allocates students after each year. For that, I thou