Skip to content
Snippets Groups Projects
Select Git revision
  • e9e1a7ca73d6705f08d6522a9a9063aa87b6a901
  • master default protected
  • test
  • 1.0.19
  • 1.0.18
  • 1.0.17
  • 1.0.16
  • 1.0.15
  • 1.0.14
  • 0.2.2
  • 0.2.1
  • 0.2.0
  • 0.1.39
  • 0.1.38
  • 0.1.37
  • 0.1.36
  • 0.1.35
  • 0.1.34
  • 0.1.33
  • 0.1.32
  • 0.1.31
  • 0.1.30
  • 0.1.29
23 results

core_data.xml

Blame
  • core_data.xml 1.45 KiB
        <dcc:coreData>
          {% set x = doc.administrativeData['coreData'] %}
          <dcc:countryCodeISO3166_1>
            {{x.countryCodeISO3166_1}}
          </dcc:countryCodeISO3166_1>
          <dcc:usedLangCodeISO639_1>
            {{x.usedLangCodeISO639_1}}
          </dcc:usedLangCodeISO639_1>
          <dcc:mandatoryLangCodeISO639_1>
            {{x.mandatoryLangCodeISO639_1}}
          </dcc:mandatoryLangCodeISO639_1>
          <dcc:uniqueIdentifier>
            {{x.uniqueIdentifier}}
          </dcc:uniqueIdentifier>
          <dcc:identifications>
            {%- for i in x.identifications['identification'] %}
            <dcc:identification>
              <dcc:issuer>{{i.issuer}}</dcc:issuer>
              <dcc:value>{{i.value}}</dcc:value>
              <dcc:description>
                {%- for j in i['description'] %}
                <dcc:content lang="{{j.lang}}">
                  <![CDATA[
                  {%- for k in j.content %}
                  {{k|safe}}
                  {% endfor -%}
                  ]]>
                </dcc:content>
                {% endfor -%}            
              </dcc:description>          
            </dcc:identification>
            {% endfor -%}
          </dcc:identifications>
          {%- if x.receiptDate %}         
          <dcc:receiptDate> <hugo
            {{x.receiptDate}}
          </dcc:receiptDate>
          {% endif -%}
          <dcc:beginPerformanceDate>
            {{x.beginPerformanceDate}}
          </dcc:beginPerformanceDate>
          <dcc:endPerformanceDate>
            {{x.endPerformanceDate}}
          </dcc:endPerformanceDate>
        </dcc:coreData>