How to paste detail group at drafting views

How do i paste the detail group at all drafting view at different locations?
Is there any nodes that is able to perform?

The python script is only able to paste the group at any of my current view. How do i modify it to all drafting views and its coordinates?

Copyright© 2018, Konrad K Sobon

@arch_laboratory, http://archi-lab.net

import clr
clr.AddReference(“RevitNodes”)
import Revit
clr.ImportExtensions(Revit.Elements)

Import DocumentManager and TransactionManager

clr.AddReference(“RevitServices”)
import RevitServices
from RevitServices.Persistence import DocumentManager
from RevitServices.Transactions import TransactionManager
doc = DocumentManager.Instance.CurrentDBDocument

clr.AddReference(“RevitAPI”)
from Autodesk.Revit.DB import *

import sys
pyt_path = r’C:\Program Files (x86)\IronPython 2.7\Lib’
sys.path.append(pyt_path)

TransactionManager.Instance.EnsureInTransaction(doc)

try:
errorReport = None

t = UnwrapElement(IN[0])
l = XYZ(60,0,0)
groups = doc.Create.PlaceGroup(l, t)

except:
import traceback
errorReport = traceback.format_exc()

TransactionManager.Instance.TransactionTaskDone()

if None == errorReport:
OUT = groups
else:
OUT = errorReport

Thanks