equal
deleted
inserted
replaced
1 from django import forms |
1 from django import forms |
2 from django.contrib.auth.models import User |
2 from django.contrib.auth.models import User |
3 from django.utils.translation import ugettext_lazy as _ |
3 from django.utils.translation import ugettext_lazy as _ |
4 |
4 |
5 from content.models import Participant |
5 from conference.models import Participant |
6 |
6 |
7 |
7 |
8 class ParticipantForm(forms.ModelForm): |
8 class ParticipantForm(forms.ModelForm): |
9 class Meta: |
9 class Meta: |
10 model = Participant |
10 model = Participant |