Advertisement
pacho_the_python

Untitled

Oct 19th, 2022
796
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. from django import forms
  2.  
  3. from my_music_app.music.models import ProfileModel, AlbumModel
  4.  
  5.  
  6. class RegisterForm(forms.ModelForm):
  7.     class Meta:
  8.         model = ProfileModel
  9.         fields = '__all__'
  10.  
  11.  
  12. class AlbumForm(forms.ModelForm):
  13.     class Meta:
  14.         model = AlbumModel
  15.         fields = "__all__"
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement