Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class TestForm(ModelForm):
- class Meta:
- model = EducationalWork
- fields = '__all__'
- widgets = {
- 'work_type': Select(attrs={'class': 'form-control', 'readonly': 'readonly'}),
- }
- labels = {
- 'work_type': 'Вид работы',
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement