Commit 0921c44de0d2de7344a859b80f80fd9439b33d6e

Authored by Alexis Koralewski
1 parent 49d54778
Exists in dev

reducing box size for short description in the form for an SP

Showing 1 changed file with 2 additions and 1 deletions   Show diff stats
src/core/pyros_django/scientific_program/forms.py
... ... @@ -17,7 +17,8 @@ class ScientificProgramForm(forms.ModelForm):
17 17  
18 18  
19 19 widgets = {
20   -
  20 + 'description_short': forms.Textarea(attrs={'rows':4, 'cols':15}),
  21 +
21 22 #"pyros_users": forms.CheckboxSelectMultiple()
22 23 }
23 24  
... ...