Skip to content

Commit 5859f67

Browse files
committed
react/material UI plugin for wq 1.3
1 parent a7bc09f commit 5859f67

38 files changed

+927
-408
lines changed

data_wizard/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,15 @@
1515

1616

1717
backend = None
18+
discovered = False
1819

1920

2021
def autodiscover():
22+
global discovered
23+
if discovered:
24+
return
2125
autodiscover_modules('wizard', register_to=None)
26+
discovered = True
2227

2328

2429
def init_backend():

data_wizard/models.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@ def last_update(self):
105105

106106
class Meta:
107107
ordering = ('-pk',)
108+
verbose_name = 'data wizard'
109+
verbose_name_plural = 'data wizard'
108110

109111

110112
class RunLog(models.Model):

data_wizard/mustache/run_auto.html

Lines changed: 0 additions & 23 deletions
This file was deleted.

data_wizard/mustache/run_columns.html

Lines changed: 0 additions & 75 deletions
This file was deleted.

data_wizard/mustache/run_data.html

Lines changed: 0 additions & 22 deletions
This file was deleted.

data_wizard/mustache/run_detail.html

Lines changed: 0 additions & 24 deletions
This file was deleted.

data_wizard/mustache/run_ids.html

Lines changed: 0 additions & 84 deletions
This file was deleted.

data_wizard/mustache/run_list.html

Lines changed: 0 additions & 25 deletions
This file was deleted.

data_wizard/mustache/run_records.html

Lines changed: 0 additions & 48 deletions
This file was deleted.

data_wizard/mustache/run_serializers.html

Lines changed: 0 additions & 52 deletions
This file was deleted.

0 commit comments

Comments
 (0)