1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Implement tag replication for #33

This commit is contained in:
Jeremy Stretch
2019-12-06 16:22:56 -05:00
parent 446acbdf82
commit b05566e96f

View File

@ -39,7 +39,9 @@ def clone_button(url, instance):
if field_value not in (None, ''):
params[field_name] = field_value
# TODO: Tag replication
# Copy tags
if hasattr(instance, 'tags'):
params['tags'] = ','.join([t.name for t in instance.tags.all()])
# Append parameters to URL
param_string = '&'.join(['{}={}'.format(k, v) for k, v in params.items()])