Template enhancements
* adds configurable label-input ratio setting for forms and specializes for RemoveModalForm * enhances form body html structure for better UX and usage of label-input ratio
This commit is contained in:
parent
e85065d43b
commit
0f6867605e
@ -29,6 +29,7 @@ class BaseForm(forms.Form):
|
|||||||
form_attrs = {} # Holds additional attributes, that can be used in the template
|
form_attrs = {} # Holds additional attributes, that can be used in the template
|
||||||
has_required_fields = False # Automatically set. Triggers hint rendering in templates
|
has_required_fields = False # Automatically set. Triggers hint rendering in templates
|
||||||
show_cancel_btn = True
|
show_cancel_btn = True
|
||||||
|
label_input_ratio = (3, 9) # used for col-sm-xy in the template. Must sum up to 12. Specify on inheriting forms
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
self.instance = kwargs.pop("instance", None)
|
self.instance = kwargs.pop("instance", None)
|
||||||
@ -42,12 +43,26 @@ class BaseForm(forms.Form):
|
|||||||
break
|
break
|
||||||
|
|
||||||
self.check_for_recorded_instance()
|
self.check_for_recorded_instance()
|
||||||
|
self.__check_valid_label_input_ratio()
|
||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
def save(self):
|
def save(self):
|
||||||
# To be implemented in subclasses!
|
# To be implemented in subclasses!
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
def __check_valid_label_input_ratio(self):
|
||||||
|
""" Checks whether the configured label-input ratio is valid
|
||||||
|
|
||||||
|
If not valid an AssertionError will be raised.
|
||||||
|
The valid sum of label-input ratio is defined by bootstrap's column layout system.
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
|
||||||
|
"""
|
||||||
|
ratio = self.label_input_ratio[0] + self.label_input_ratio[1]
|
||||||
|
if ratio != 12:
|
||||||
|
raise AssertionError(f"Label-input ratio on form must sum up to 12! It's {self.label_input_ratio}")
|
||||||
|
|
||||||
def disable_form_field(self, field: str):
|
def disable_form_field(self, field: str):
|
||||||
"""
|
"""
|
||||||
Disables a form field for user editing
|
Disables a form field for user editing
|
||||||
|
@ -24,6 +24,7 @@ class RemoveModalForm(BaseModalForm):
|
|||||||
widget=forms.CheckboxInput(),
|
widget=forms.CheckboxInput(),
|
||||||
required=True,
|
required=True,
|
||||||
)
|
)
|
||||||
|
label_input_ratio = (2, 10)
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
self.template = "modal/modal_form.html"
|
self.template = "modal/modal_form.html"
|
||||||
|
@ -60,6 +60,10 @@ a {
|
|||||||
color: var(--rlp-red);
|
color: var(--rlp-red);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
label {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
.form-control:focus{
|
.form-control:focus{
|
||||||
outline: none;
|
outline: none;
|
||||||
border-color: var(--rlp-red);
|
border-color: var(--rlp-red);
|
||||||
|
@ -4,12 +4,18 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
{% for field in form %}
|
{% for field in form %}
|
||||||
<tr title="{{ field.help_text }}" class="{% if field.errors %}alert-danger{% endif %}">
|
<tr title="{{ field.help_text }}" class="{% if field.errors %}alert-danger{% endif %}">
|
||||||
<th scope="row" class="col-sm-3">
|
{{form.small_label_column}}
|
||||||
<label for="id_{{ field.name }}">{{ field.label }}<span class="label-required">{% if field.field.required %}*{% endif %}</span></label>
|
<th scope="row" class="col-sm-{{form.label_input_ratio.0}}">
|
||||||
|
<label for="id_{{ field.name }}">
|
||||||
|
{{ field.label }}
|
||||||
|
<span class="label-required">
|
||||||
|
{% if field.field.required %}*{% endif %}
|
||||||
|
</span>
|
||||||
<br>
|
<br>
|
||||||
<small>{{ field.help_text }}</small>
|
<small>{{ field.help_text }}</small>
|
||||||
|
</label>
|
||||||
</th>
|
</th>
|
||||||
<td class="col-sm-9">
|
<td class="col-sm-{{form.label_input_ratio.1}}">
|
||||||
{{ field }}
|
{{ field }}
|
||||||
{% for error in field.errors %}
|
{% for error in field.errors %}
|
||||||
<br>
|
<br>
|
||||||
|
Loading…
Reference in New Issue
Block a user