You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
787 B
XML
21 lines
787 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
<xsl:import href="../../fsfe.xsl" />
|
|
<xsl:import href="../../build/xslt/countries.xsl" />
|
|
|
|
<xsl:template match="sigtable">
|
|
<xsl:copy-of select="document('sigtable.en.xml')" />
|
|
</xsl:template>
|
|
|
|
<!-- Dropdown list of countries requiring a choice -->
|
|
<!-- when copying this, remember importing the xsl, and editing the .source file -->
|
|
<xsl:template match="country-list">
|
|
<xsl:call-template name="country-list">
|
|
<xsl:with-param name="class" select="'form-control'" />
|
|
<xsl:with-param name="required" select="'yes'" />
|
|
<xsl:with-param name="twoletter" select="'yes'" />
|
|
</xsl:call-template>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|