mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
remove default listing without a key
This commit is contained in:
parent
5bb3a95699
commit
3be21c59ec
@ -1269,9 +1269,6 @@ def get_price(instance, quantity, moq=True, multiples=True, currency=None, break
|
|||||||
|
|
||||||
class ColorTheme(models.Model):
|
class ColorTheme(models.Model):
|
||||||
""" Color Theme Setting """
|
""" Color Theme Setting """
|
||||||
|
|
||||||
default_color_theme = ('', _('Default'))
|
|
||||||
|
|
||||||
name = models.CharField(max_length=20,
|
name = models.CharField(max_length=20,
|
||||||
default='',
|
default='',
|
||||||
blank=True)
|
blank=True)
|
||||||
@ -1291,10 +1288,7 @@ class ColorTheme(models.Model):
|
|||||||
# Get color themes choices (CSS sheets)
|
# Get color themes choices (CSS sheets)
|
||||||
choices = [(file_name.lower(), _(file_name.replace('-', ' ').title()))
|
choices = [(file_name.lower(), _(file_name.replace('-', ' ').title()))
|
||||||
for file_name, file_ext in files_list
|
for file_name, file_ext in files_list
|
||||||
if file_ext == '.css' and file_name.lower() != 'default']
|
if file_ext == '.css']
|
||||||
|
|
||||||
# Add default option as empty option
|
|
||||||
choices.insert(0, cls.default_color_theme)
|
|
||||||
|
|
||||||
return choices
|
return choices
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user