﻿<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template name="AddUserTo">
        <xsl:param name="itemID" select="'Not Available'"></xsl:param>
        
        <div id="div_{$itemID}_AddUserTo" 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>
