5 |
5 |
6 """ |
6 """ |
7 Module implementing the Django configuration page. |
7 Module implementing the Django configuration page. |
8 """ |
8 """ |
9 |
9 |
10 from EricWidgets.EricApplication import ericApp |
10 from eric7.EricWidgets.EricApplication import ericApp |
11 from EricWidgets.EricPathPicker import EricPathPickerModes |
11 from eric7.EricWidgets.EricPathPicker import EricPathPickerModes |
|
12 from eric7.Globals import isWindowsPlatform, isMacPlatform |
|
13 from eric7.Preferences.ConfigurationPages.ConfigurationPageBase import ( |
|
14 ConfigurationPageBase, |
|
15 ) |
12 |
16 |
13 from Preferences.ConfigurationPages.ConfigurationPageBase import ConfigurationPageBase |
|
14 from .Ui_DjangoPage import Ui_DjangoPage |
17 from .Ui_DjangoPage import Ui_DjangoPage |
15 |
|
16 from Globals import isWindowsPlatform, isMacPlatform |
|
17 |
18 |
18 |
19 |
19 class DjangoPage(ConfigurationPageBase, Ui_DjangoPage): |
20 class DjangoPage(ConfigurationPageBase, Ui_DjangoPage): |
20 """ |
21 """ |
21 Class implementing the Django configuration page. |
22 Class implementing the Django configuration page. |