mirror of
https://github.com/django/django.git
synced 2025-07-04 01:39:20 +00:00
Removed unused AdminCommaSeparatedIntegerFieldWidget.
Unused since f212b24b6469b66424354bf970f3051df180b88d.
This commit is contained in:
parent
3cb63b0e47
commit
5cc8261c39
@ -398,11 +398,3 @@ class AdminIntegerFieldWidget(forms.TextInput):
|
|||||||
|
|
||||||
class AdminBigIntegerFieldWidget(AdminIntegerFieldWidget):
|
class AdminBigIntegerFieldWidget(AdminIntegerFieldWidget):
|
||||||
class_name = 'vBigIntegerField'
|
class_name = 'vBigIntegerField'
|
||||||
|
|
||||||
|
|
||||||
class AdminCommaSeparatedIntegerFieldWidget(forms.TextInput):
|
|
||||||
def __init__(self, attrs=None):
|
|
||||||
final_attrs = {'class': 'vCommaSeparatedIntegerField'}
|
|
||||||
if attrs is not None:
|
|
||||||
final_attrs.update(attrs)
|
|
||||||
super(AdminCommaSeparatedIntegerFieldWidget, self).__init__(attrs=final_attrs)
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user