## group.html - Showing group tab buttons with vectors in the group <%page args="deviceobj, groups, selectedgp, vectors, loggedin, blobfolder"/> ## create an SSE connection which send newvectors event if any of the vectors in the group are enabled or disabled
## and if newvectors event received request a change of this same selected group
% for group in groups: % if selectedgp == group: ${group|h} % else: ${group|h} % endif % endfor
## For the displayed group, show the vectors in the group ## create an SSE connection which send vector change event whenever there is a vector value change
% for vectorobj in vectors:
<%include file="vector/getvector.html" args="vectorobj=vectorobj, timestamp='', loggedin=loggedin, blobfolder=blobfolder, message_timestamp=''"/>
% endfor