diff --git a/amadeus/static/css/base/amadeus.css b/amadeus/static/css/base/amadeus.css index c6d9045..f64584a 100755 --- a/amadeus/static/css/base/amadeus.css +++ b/amadeus/static/css/base/amadeus.css @@ -800,6 +800,7 @@ a:focus { -moz-user-select: none; -ms-user-select: none; user-select: none; + float: none; } a.add-row { diff --git a/goals/forms.py b/goals/forms.py index 2a10094..f9ba7c6 100644 --- a/goals/forms.py +++ b/goals/forms.py @@ -116,6 +116,8 @@ class GoalItemForm(forms.ModelForm): def clean(self): cleaned_data = super(GoalItemForm, self).clean() + print(cleaned_data) + description = cleaned_data.get('description', None) ref_value = cleaned_data.get('ref_value', None) diff --git a/goals/templates/goals/_form.html b/goals/templates/goals/_form.html index db47c00..4a810e9 100644 --- a/goals/templates/goals/_form.html +++ b/goals/templates/goals/_form.html @@ -419,6 +419,7 @@ input.parent().find('.slider').remove(); new_input.attr('class', input.attr('class')); new_input.attr('id', input.attr('id')); + new_input.attr('name', input.attr('name')); new_input.insertBefore(input); input.remove(); new_input.bootstrapSlider({ -- libgit2 0.21.2