Skip to content

urls

variable.urls ¤

Attributes¤

app_name = 'variable' module-attribute ¤

urlpatterns = [path('unit/<int:pk>', UnitDetailView.as_view(), name='unit_detail'), path('variable/<int:pk>', VariableDetailView.as_view(), name='variable_detail'), path('sensorinstallation/<int:pk>', SensorInstallationDetailView.as_view(), name='sensorinstallation_detail'), path('unit/create/', UnitCreateView.as_view(), name='unit_create'), path('variable/create/', VariableCreateView.as_view(), name='variable_create'), path('sensorinstallation/create/', SensorInstallationCreateView.as_view(), name='sensorinstallation_create'), path('unit/edit/<int:pk>', UnitEditView.as_view(), name='unit_edit'), path('variable/edit/<int:pk>', VariableEditView.as_view(), name='variable_edit'), path('sensorinstallation/edit/<int:pk>', SensorInstallationEditView.as_view(), name='sensorinstallation_edit'), path('unit/delete/<int:pk>', UnitDeleteView.as_view(), name='unit_delete'), path('variable/delete/<int:pk>', VariableDeleteView.as_view(), name='variable_delete'), path('sensorinstallation/delete/<int:pk>', SensorInstallationDeleteView.as_view(), name='sensorinstallation_delete'), path('unit/', UnitListView.as_view(), name='unit_list'), path('variable/', VariableListView.as_view(), name='variable_list'), path('sensorinstallation/', SensorInstallationListView.as_view(), name='sensorinstallation_list')] module-attribute ¤

Classes¤

SensorInstallationCreateView ¤

Bases: CustomCreateView

View to create a sensor installation.

SensorInstallationDeleteView ¤

Bases: CustomDeleteView

View to delete a sensor installation.

SensorInstallationDetailView ¤

Bases: CustomDetailView

View to view a sensor installation.

SensorInstallationEditView ¤

Bases: CustomEditView

View to edit a sensor installation.

SensorInstallationListView ¤

Bases: CustomTableView

View to display a table of sensor installations.

UnitCreateView ¤

Bases: CustomCreateView

View to create a unit.

UnitDeleteView ¤

Bases: CustomDeleteView

View to delete a unit.

UnitDetailView ¤

Bases: CustomDetailView

View to view a unit.

UnitEditView ¤

Bases: CustomEditView

View to edit a unit.

UnitListView ¤

Bases: CustomTableView

View to display a table of units.

VariableCreateView ¤

Bases: CustomCreateView

View to create a variable.

VariableDeleteView ¤

Bases: CustomDeleteView

View to delete a variable.

VariableDetailView ¤

Bases: CustomDetailView

View to view a variable.

VariableEditView ¤

Bases: CustomEditView

View to edit a variable.

VariableListView ¤

Bases: CustomTableView

View to display a table of variables.