Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from django import forms
- from my_music_app.music.models import ProfileModel, AlbumModel
- class RegisterForm(forms.ModelForm):
- class Meta:
- model = ProfileModel
- fields = '__all__'
- class AlbumForm(forms.ModelForm):
- class Meta:
- model = AlbumModel
- fields = "__all__"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement