🏢 {{ row["company"] or "Unknown Company" }}
{% if row["location"] %} • 📍 {{ row["location"] }}{% endif %}
{% if row["site"] %}
{{ row["site"] }}
{% endif %}
{% if row["rate"] %}
💰 Rate: {{ row["rate"] }}
{% endif %}
{% if row["clock"] %}
⏰ Type: {{ row["clock"] }}
{% endif %}
{% if row["start_date"] or row["end_date"] %}
📅 Duration: {{ row["start_date"] or "Asap" }} → {{ row["end_date"] or "Ongoing" }}
{% endif %}
{% if row["description"] %}
{{ row["description"] }}
{% endif %}
{% if row["skills"] %}
{% set skills_data = row["skills"] %}
{# Handles cases where JSON is parsed or remains a string #}
{% if skills_data is string %}
{{ skills_data }}
{% else %}
{% for skill in skills_data %}
{{ skill }}
{% endfor %}
{% endif %}
{% endif %}