Skip to content

Commit

Permalink
Merge pull request #109 from DanSheps/develop
Browse files Browse the repository at this point in the history
Fixes #97
  • Loading branch information
DanSheps authored Dec 31, 2022
2 parents 75c6897 + 1d9bc69 commit 50e3b85
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'generic/object_bulk_import.html' %}
{% extends 'generic/bulk_import.html' %}
{% load static %}

{% block content %}
Expand Down
4 changes: 2 additions & 2 deletions netbox_secretstore/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class SecretRoleDeleteView(ObjectDeleteView):

class SecretRoleBulkImportView(BulkImportView):
queryset = SecretRole.objects.all()
form = SecretRoleCSVForm
model_form = SecretRoleCSVForm
table = SecretRoleTable


Expand Down Expand Up @@ -183,7 +183,7 @@ class SecretDeleteView(ObjectDeleteView):

class SecretBulkImportView(BulkImportView):
queryset = Secret.objects.all()
form = SecretCSVForm
model_form = SecretCSVForm
table = SecretTable
template_name = 'netbox_secretstore/secret_import.html'
widget_attrs = {'class': 'requires-session-key'}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='netbox-secretstore',
version='1.4.0',
version='1.4.1',
description='Netbox Secret Store',
long_description='A Secret store for NetBox',
url='https://github.com/dansheps/netbox-secretstore/',
Expand Down

0 comments on commit 50e3b85

Please sign in to comment.