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:
@ -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()])
|
||||
|
Reference in New Issue
Block a user