Skip to content
This repository has been archived by the owner on Feb 7, 2023. It is now read-only.

Institutes app? #223

Open
kallewesterling opened this issue Oct 7, 2020 · 0 comments
Open

Institutes app? #223

kallewesterling opened this issue Oct 7, 2020 · 0 comments
Assignees
Labels
Milestone

Comments

@kallewesterling
Copy link
Member

Adding an app for institutes with institutional affiliation + ability to connect a group of users to a particular institute

class Institute(models.Model):
    admin_teams = models.ManyToManyField(User)
    instruction_teams = models.ManyToManyField(InstructionTeam)
    name = ...
    institution = models.ForeignKey(Institution)
    workshops = models.ManyToManyField(Workshop)
    tracks = models.ManyToManyField(Track)

class Institution(models.Model):
    name = ...

class InstructionTeam(models.Model):
    workshop = models.ForeignKey(Workshop)
    
@kallewesterling kallewesterling added this to the v2.0 milestone Oct 7, 2020
@kallewesterling kallewesterling self-assigned this Oct 7, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

1 participant