2022-04-12 10:57:10 +00:00
|
|
|
<?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" />
|
2022-11-17 15:08:29 +00:00
|
|
|
<xsl:import href="../../build/xslt/countries.xsl" />
|
2022-04-12 10:57:10 +00:00
|
|
|
|
|
|
|
<xsl:template match="sigtable">
|
2022-11-17 15:08:29 +00:00
|
|
|
<xsl:copy-of select="document('sigtable.en.xml')" />
|
2022-04-12 10:57:10 +00:00
|
|
|
</xsl:template>
|
|
|
|
|
2022-11-17 15:08:29 +00:00
|
|
|
<!-- 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>
|
2022-04-12 10:57:10 +00:00
|
|
|
</xsl:stylesheet>
|