﻿<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    
    <xsl:template name="NewUserShareIt">
        <xsl:param name="ItemID" select="''"></xsl:param>
        
        <div id="div_item_{$ItemID}_NewUserShareIt" style="display:none;">
            <span class="label">Add User to: </span>
            <input id="rb_{$ItemID}_AddRespToGoal" type="radio" name="ItemShareItType" checked="true">
                <span class="taskFilter" style='margin-right:10px'>Goal</span>
            </input>
            <input id="rb_{$ItemID}_AddRespToItem" type="radio" name="ItemShareItType">
                <span class="taskFilter" style='margin-right:10px'>This Item</span>
            </input>
            <input id="rb_{$ItemID}_AddRespToNone" type="radio" name="ItemShareItType">
                <span class="taskFilter" style='margin-right:10px'>nothing</span>
            </input>
        </div>
    </xsl:template>
</xsl:stylesheet>
