{% load template_tags %} {% for resource in resources %} {% with resource_data=resource.resource %} {{ resource.grafo }} ID de sistema: {{ resource.resourceinstanceid }} {% if resource_data %}

{{ resource.displayname|truncatewords:10 }}

Identificación
{% if resource_data|has_key:"Identificación" %} {% for iden in resource_data|val_from_key:"Identificación" %}
Nombre / Título : {{ iden|val_from_key:"@value" }}
Tipo de actor : {{ iden|val_from_key:"Tipo de actor" }}
Cargo : {{ iden|val_from_key:"Cargo" }}
{% endfor %} {% endif %}
Características
{% if resource_data|has_key:"Detalles del actor" %}
Grupo etario: {{ resource_data|val_from_key:"Detalles del actor"|val_from_key:"Grupo etario" }}
Rasgo Cultural Principal: {{ resource_data|val_from_key:"Detalles del actor"|val_from_key:"Rasgo Cultural Principal" }}
Otro rasgo cultural: {{ resource_data|val_from_key:"Detalles del actor"|val_from_key:"Otro rasgo cultural" }}
Sexo: {{ resource_data|val_from_key:"Detalles del actor"|val_from_key:"Sexo" }}
Nº de personas (aprox.): {{ resource_data|val_from_key:"Detalles del actor"|val_from_key:'Cantidad de personas del grupo(aprox.)' }}
{% endif %}
Imagen de referencia
{% if resource_data|has_key:"Imagen de referencia" %}
foto
{% endif %}
Ubicación
{% if resource_data|has_key:"Ubicación simple" %}
Localidad: {{ resource_data|val_from_key:"Ubicación simple"|val_from_key:"Departamento" }}
Otra localidad: {{ resource_data|val_from_key:"Ubicación simple"|val_from_key:"Otra localidad" }}
Coordenadas / Geometría:
{% if resource_data|val_from_key:"Ubicación simple"|has_key:"Coordenadas / Geometría" %} {% with gis_vector=resource_data|val_from_key:"Ubicación simple"|val_from_key:"Coordenadas / Geometría"|val_from_key:"@value"|json_to_obj %} {% for gis in gis_vector.features %}
{{ gis.geometry|truncatewords:24 }}
{% endfor %} {% endwith %}
Geometría principal: {{ resource_data|val_from_key:"Ubicación simple"|val_from_key:"Coordenadas / Geometría"|val_from_key:"Tipo de geometría" }}
{% endif %} {% endif %}
Mapa de referencia
Notas
{% if resource_data|has_key:"Descripción / Notas" %} {% for desc in resource_data|val_from_key:"Descripción / Notas" %}
{{ desc|val_from_key:"Tipo de descripción" }}
{{ desc|val_from_key:"Descripción"|safe|cut:"

 

" }}
{% endfor %} {% endif %}
{% else %}

El recurso no tiene información.

{% endif %} {% endwith %} {% endfor %}