Compare commits
No commits in common. "628925a0135220090acf7b7be7dc6f7da420f016" and "a8928587f2698ee20e6c2be3a024e988b5368397" have entirely different histories.
628925a013
...
a8928587f2
|
@ -1,12 +1,6 @@
|
|||
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,5 +78,4 @@ 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,10 +4,7 @@
|
|||
{% load form_tags %}
|
||||
|
||||
{% block content %}
|
||||
<form {% if form_id %} id="{{ form_id }}" {% endif %}
|
||||
{% if form_class %} class="{{ form_class }}" {% endif %}
|
||||
action="." method="POST"
|
||||
enctype="multipart/form-data">{% csrf_token %}
|
||||
<form action="." method="POST" enctype="multipart/form-data">{% csrf_token %}
|
||||
{% if is_popup %}
|
||||
<input type="hidden" name="_popup" value="1">
|
||||
{% endif %}
|
||||
|
|
|
@ -201,7 +201,6 @@ class GASCreateView(GASMixin, CreateView):
|
|||
is_popup = "_popup" in self.request.GET
|
||||
ctx.update({
|
||||
'is_popup': is_popup,
|
||||
'form_id': 'main-form',
|
||||
})
|
||||
return ctx
|
||||
|
||||
|
@ -221,13 +220,6 @@ 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.2.13
|
||||
Django==3.1.4
|
||||
|
|
Loading…
Reference in New Issue