{% if row["site"] %}
{{ row["site"] }}
{% endif %}
🏢 {{ row["company"] or "Unknown Company" }}
{% if row["location"] %}
•📍 {{ row["location"] }}
{% endif %}
💰
Rate:{{ row["rate"] or "N/A" }}
⏰
Type:{{ row["clock"] or "N/A" }}
📅
Start:{{ row["start_date"] or "N/A" }}
🏁
End:{{ row["end_date"] or "N/A" }}
{% if row["description"] %}
{{ row["description"] }}
{% endif %}
{% if row["skills"] %}
{% set skills_data = row["skills"] %}
{# Parse if stored as a JSON string #}
{% if skills_data is string and skills_data.startswith('[') %}
{% set skills_data = skills_data | from_json %}
{% endif %}
{% if skills_data is iterable and skills_data is not string %}
{% for skill in skills_data %}
{{ skill }}
{% endfor %}
{% else %}
{{ skills_data }}
{% endif %}