Enhance CaseCollectionForm: replace collection_type field with radio buttons and add custom styling
This commit is contained in:
+20
-1
@@ -142,6 +142,25 @@ class CaseCollectionForm(ModelForm):
|
|||||||
ModelForm.__init__(self, *args, **kwargs)
|
ModelForm.__init__(self, *args, **kwargs)
|
||||||
super(CaseCollectionForm, self).__init__(*args, **kwargs)
|
super(CaseCollectionForm, self).__init__(*args, **kwargs)
|
||||||
|
|
||||||
|
# Render collection_type as radio buttons and ensure it appears near the top
|
||||||
|
if "collection_type" in self.fields:
|
||||||
|
# Replace the model field with an explicit ChoiceField that uses RadioSelect
|
||||||
|
original = self.fields["collection_type"]
|
||||||
|
choices = getattr(original, "choices", ())
|
||||||
|
initial = original.initial if hasattr(original, "initial") else None
|
||||||
|
required = original.required
|
||||||
|
label = original.label
|
||||||
|
widget = RadioSelect(attrs={"class": "btn-check"})
|
||||||
|
# assign custom template for rendering as button group
|
||||||
|
#widget.template_name = "widgets/radioselect_buttons.html"
|
||||||
|
self.fields["collection_type"] = forms.ChoiceField(
|
||||||
|
choices=choices,
|
||||||
|
widget=widget,
|
||||||
|
initial=initial,
|
||||||
|
required=required,
|
||||||
|
label=label,
|
||||||
|
)
|
||||||
|
|
||||||
# Identify show_ fields
|
# Identify show_ fields
|
||||||
show_fields = [f for f in self.fields if f.startswith("show_")]
|
show_fields = [f for f in self.fields if f.startswith("show_")]
|
||||||
show_pre_fields = [f for f in show_fields if f.endswith("_pre")]
|
show_pre_fields = [f for f in show_fields if f.endswith("_pre")]
|
||||||
@@ -187,6 +206,7 @@ class CaseCollectionForm(ModelForm):
|
|||||||
Fieldset(
|
Fieldset(
|
||||||
"Collection Details",
|
"Collection Details",
|
||||||
"name",
|
"name",
|
||||||
|
Field("collection_type", css_class="mb-2"),
|
||||||
Fieldset(
|
Fieldset(
|
||||||
"Dates",
|
"Dates",
|
||||||
"restrict_to_dates",
|
"restrict_to_dates",
|
||||||
@@ -214,7 +234,6 @@ class CaseCollectionForm(ModelForm):
|
|||||||
"exam_mode",
|
"exam_mode",
|
||||||
"self_review",
|
"self_review",
|
||||||
"feedback_once_collection_complete",
|
"feedback_once_collection_complete",
|
||||||
"collection_type",
|
|
||||||
"viewer_mode",
|
"viewer_mode",
|
||||||
"question_time_limit",
|
"question_time_limit",
|
||||||
"prerequisites",
|
"prerequisites",
|
||||||
|
|||||||
@@ -3,6 +3,40 @@
|
|||||||
{% load crispy_forms_tags %}
|
{% load crispy_forms_tags %}
|
||||||
|
|
||||||
{% block css %}
|
{% block css %}
|
||||||
|
<style>
|
||||||
|
/* Turn the existing form-check radio markup into horizontal button-like radios */
|
||||||
|
#div_id_collection_type .form-check { display: inline-block; margin-right: .5rem; }
|
||||||
|
#div_id_collection_type .form-check-input {
|
||||||
|
/* visually hide the native radio but keep it focusable */
|
||||||
|
position: absolute;
|
||||||
|
width: 1px;
|
||||||
|
height: 1px;
|
||||||
|
padding: 0;
|
||||||
|
margin: -1px;
|
||||||
|
overflow: hidden;
|
||||||
|
clip: rect(0,0,0,0);
|
||||||
|
white-space: nowrap;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
#div_id_collection_type .form-check-label {
|
||||||
|
display: inline-block;
|
||||||
|
padding: .375rem .75rem;
|
||||||
|
border: 1px solid #0d6efd;
|
||||||
|
border-radius: .375rem;
|
||||||
|
color: #0d6efd;
|
||||||
|
cursor: pointer;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
#div_id_collection_type .form-check-input:focus + .form-check-label {
|
||||||
|
box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
|
||||||
|
}
|
||||||
|
#div_id_collection_type .form-check-input:checked + .form-check-label {
|
||||||
|
background-color: #0d6efd;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
/* small spacing tweak when legend present */
|
||||||
|
#div_id_collection_type fieldset { border: 0; padding: 0; margin: 0 0 1rem 0; }
|
||||||
|
</style>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block js %}
|
{% block js %}
|
||||||
<!--<script type="text/javascript" src="/admin/jsi18n/"></script>-->
|
<!--<script type="text/javascript" src="/admin/jsi18n/"></script>-->
|
||||||
|
|||||||
@@ -0,0 +1,24 @@
|
|||||||
|
{% load i18n %}
|
||||||
|
<div class="btn-group" role="group" aria-label="{{ widget.name }}">
|
||||||
|
{% for val, label in widget.choices %}
|
||||||
|
{% with forloop.counter0 as idx %}
|
||||||
|
{% with id=widget.name|add:"_"|add:idx %}
|
||||||
|
<input
|
||||||
|
type="radio"
|
||||||
|
class="btn-check"
|
||||||
|
name="{{ widget.name }}"
|
||||||
|
id="{{ widget.name }}_{{ idx }}"
|
||||||
|
value="{{ val }}"
|
||||||
|
{% if val|stringformat:"s" == widget.value|stringformat:"s" %}checked{% endif %}
|
||||||
|
autocomplete="off"
|
||||||
|
>
|
||||||
|
<label
|
||||||
|
class="btn btn-outline-primary {% if val|stringformat:"s" == widget.value|stringformat:"s" %}active{% endif %}"
|
||||||
|
for="{{ widget.name }}_{{ idx }}"
|
||||||
|
>
|
||||||
|
{{ label }}
|
||||||
|
</label>
|
||||||
|
{% endwith %}
|
||||||
|
{% endwith %}
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
Reference in New Issue
Block a user