Compare commits
4 Commits
a8928587f2
...
628925a013
Author | SHA1 | Date |
---|---|---|
Ales (Shagi) Zabala Alava | 628925a013 | |
Ales (Shagi) Zabala Alava | 9ac3620f28 | |
Ales (Shagi) Zabala Alava | 68b7c5c8ae | |
Ales (Shagi) Zabala Alava | 6e238b2f52 |
|
@ -1,6 +1,12 @@
|
|||
Changelog
|
||||
=========
|
||||
|
||||
0.8.4
|
||||
-----
|
||||
|
||||
* Allow setting form id or class on base_form.html
|
||||
* Use time input_type on split_datetime_field
|
||||
|
||||
0.8.3
|
||||
-----
|
||||
|
||||
|
|
|
@ -78,4 +78,5 @@ def split_datetime_field(form, field_name):
|
|||
),
|
||||
)
|
||||
new_field.widget.widgets[0].input_type = 'date'
|
||||
new_field.widget.widgets[1].input_type = 'time'
|
||||
form.fields[field_name] = new_field
|
||||
|
|
|
@ -4,7 +4,10 @@
|
|||
{% load form_tags %}
|
||||
|
||||
{% block content %}
|
||||
<form action="." method="POST" enctype="multipart/form-data">{% csrf_token %}
|
||||
<form {% if form_id %} id="{{ form_id }}" {% endif %}
|
||||
{% if form_class %} class="{{ form_class }}" {% endif %}
|
||||
action="." method="POST"
|
||||
enctype="multipart/form-data">{% csrf_token %}
|
||||
{% if is_popup %}
|
||||
<input type="hidden" name="_popup" value="1">
|
||||
{% endif %}
|
||||
|
|
|
@ -201,6 +201,7 @@ class GASCreateView(GASMixin, CreateView):
|
|||
is_popup = "_popup" in self.request.GET
|
||||
ctx.update({
|
||||
'is_popup': is_popup,
|
||||
'form_id': 'main-form',
|
||||
})
|
||||
return ctx
|
||||
|
||||
|
@ -220,6 +221,13 @@ class GASUpdateView(GASMixin, UpdateView):
|
|||
""" Same as Django's UpdateView, defined only for completeness. """
|
||||
template_name = 'gas/base_form.html'
|
||||
|
||||
def get_context_data(self, **kwargs):
|
||||
ctx = super().get_context_data(**kwargs)
|
||||
ctx.update({
|
||||
'form_id': 'main-form',
|
||||
})
|
||||
return ctx
|
||||
|
||||
|
||||
class GASDeleteView(GASMixin, DeleteView):
|
||||
template_name = "gas/delete_confirmation.html"
|
||||
|
|
|
@ -1 +1 @@
|
|||
Django==3.1.4
|
||||
Django==3.2.13
|
||||
|
|
Loading…
Reference in New Issue