|
8 | 8 | # SoftwareProduct
|
9 | 9 | path("software-products/", views.SoftwareProductListView.as_view(), name="softwareproduct_list"),
|
10 | 10 | path("software-products/add/", views.SoftwareProductEditView.as_view(), name="softwareproduct_add"),
|
11 |
| - path("software-products/import/", views.SoftwareProductBulkImportView.as_view(), name="softwareproduct_import"), |
12 |
| - path("software-products/edit/", views.SoftwareProductBulkEditView.as_view(), name="softwareproduct_bulk_edit"), |
13 | 11 | path(
|
14 | 12 | "software-products/delete/", views.SoftwareProductBulkDeleteView.as_view(), name="softwareproduct_bulk_delete"
|
15 | 13 | ),
|
|
27 | 25 | # SoftwareProductVersion
|
28 | 26 | path("versions/", views.SoftwareProductVersionListView.as_view(), name="softwareproductversion_list"),
|
29 | 27 | path("versions/add/", views.SoftwareProductVersionEditView.as_view(), name="softwareproductversion_add"),
|
30 |
| - path( |
31 |
| - "versions/import/", views.SoftwareProductVersionBulkImportView.as_view(), name="softwareproductversion_import" |
32 |
| - ), |
33 |
| - path("versions/edit/", views.SoftwareProductVersionBulkEditView.as_view(), name="softwareproductversion_bulk_edit"), |
34 | 28 | path(
|
35 | 29 | "versions/delete/",
|
36 | 30 | views.SoftwareProductVersionBulkDeleteView.as_view(),
|
|
60 | 54 | views.SoftwareProductInstallationEditView.as_view(),
|
61 | 55 | name="softwareproductinstallation_add",
|
62 | 56 | ),
|
63 |
| - path( |
64 |
| - "installations/import/", |
65 |
| - views.SoftwareProductInstallationBulkImportView.as_view(), |
66 |
| - name="softwareproductinstallation_import", |
67 |
| - ), |
68 |
| - path( |
69 |
| - "installations/edit/", |
70 |
| - views.SoftwareProductInstallationBulkEditView.as_view(), |
71 |
| - name="softwareproductinstallation_bulk_edit", |
72 |
| - ), |
73 | 57 | path(
|
74 | 58 | "installations/delete/",
|
75 | 59 | views.SoftwareProductInstallationBulkDeleteView.as_view(),
|
|
99 | 83 | # SoftwareLicense
|
100 | 84 | path("licenses/", views.SoftwareLicenseListView.as_view(), name="softwarelicense_list"),
|
101 | 85 | path("licenses/add/", views.SoftwareLicenseEditView.as_view(), name="softwarelicense_add"),
|
102 |
| - path("licenses/import/", views.SoftwareLicenseBulkImportView.as_view(), name="softwarelicense_import"), |
103 |
| - path("licenses/edit/", views.SoftwareLicenseBulkEditView.as_view(), name="softwarelicense_bulk_edit"), |
104 | 86 | path("licenses/delete/", views.SoftwareLicenseBulkDeleteView.as_view(), name="softwarelicense_bulk_delete"),
|
105 | 87 | path("licenses/<int:pk>/", views.SoftwareLicenseView.as_view(), name="softwarelicense"),
|
106 | 88 | path("licenses/<int:pk>/delete/", views.SoftwareLicenseDeleteView.as_view(), name="softwarelicense_delete"),
|
|
0 commit comments