<sources>
    <programs>
        <default pathversion="1"></default>
    </programs>
    <video>
        <default pathversion="1"></default>
{% for source in kodi_sources.video %}
        <source>
            <name>{{ source.name }}</name>
	    <path pathversion="1">{{ source.path }}</path>
            <allowsharing>true</allowsharing>
        </source>
{% endfor %}
    </video>
    <music>
{% for source in kodi_sources.music %}
        <default pathversion="1"></default>
        <source>
	    <name>{{ source.name }}</name>
	    <path pathversion="1">{{ source.path }}</path>
            <allowsharing>true</allowsharing>
        </source>
{% endfor %}
    </music>
    <pictures>
{% for source in kodi_sources.pictures %}
        <default pathversion="1"></default>
        <source>
	    <name>{{ source.name }}</name>
	    <path pathversion="1">{{ source.path }}</path>
            <allowsharing>true</allowsharing>
        </source>
{% endfor %}
    </pictures>
    <files>
{% for source in kodi_sources.files %}
        <default pathversion="1"></default>
        <source>
            <name>{{ source.name }}</name>
	    <path pathversion="1">{{ source.path }}</path>
            <allowsharing>true</allowsharing>
        </source>
{% endfor %}
    </files>
    <games>
        <default pathversion="1"></default>
    </games>
</sources>