Advertisement
Guest User

Untitled

a guest
May 27th, 2021
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.30 KB | None | 0 0
  1. class TestForm(ModelForm):
  2.     class Meta:
  3.         model = EducationalWork
  4.         fields = '__all__'
  5.         widgets = {
  6.             'work_type': Select(attrs={'class': 'form-control', 'readonly': 'readonly'}),
  7.         }
  8.         labels = {
  9.             'work_type': 'Вид работы',
  10.         }
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement