Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1from django.db import models 

2 

3from project.models import Project 

4 

5 

6class SummaryGroup(models.Model): 

7 name = models.CharField(max_length=255, unique=True) 

8 projects = models.ManyToManyField(Project) 

9 

10 class Meta: 

11 ordering = ['name'] 

12 

13 def __str__(self): 

14 return self.name