2
0
Эх сурвалжийг харах

Implement tag replication for #33

Jeremy Stretch 6 жил өмнө
parent
commit
b05566e96f

+ 3 - 1
netbox/utilities/templatetags/buttons.py

@@ -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()])