Compare commits
2 commits
fdd93aa278
...
e856859ffb
Author | SHA1 | Date | |
---|---|---|---|
e856859ffb | |||
f8667b8247 |
2 changed files with 6 additions and 2 deletions
|
@ -417,7 +417,11 @@ input[type="file"] {
|
|||
display: block;
|
||||
}
|
||||
|
||||
input, textarea {
|
||||
input {
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
textarea.feedback {
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
|
|
|
@ -93,7 +93,7 @@ class JednoHodnoceniForm(forms.ModelForm):
|
|||
'problem': autocomplete.ModelSelect2(
|
||||
url='autocomplete_problem_odevzdatelny', # FIXME: Dovolit i starší?
|
||||
),
|
||||
'feedback': forms.Textarea(attrs={'rows': 1, 'cols': 30}),
|
||||
'feedback': forms.Textarea(attrs={'rows': 1, 'cols': 30, 'class': 'feedback'}),
|
||||
}
|
||||
|
||||
OhodnoceniReseniFormSet = formset_factory(JednoHodnoceniForm,
|
||||
|
|
Loading…
Reference in a new issue