{% extends "base.html" %} {% block title %}Call Page{% endblock %} {% block content %}

{{ call.symbol }} - {{ call.companyname }} - {{ call.quarter }} {{ call.year }} Earnings Call Transcript
Call Date: {{ call.date }}

Participants:

    {% for participant in participants[:5] %}
  • {{ participant.name }} - {{ participant.role }}
  • {% endfor %}
{% if participants|length > 5 %} {% endif %}

Transcript:

{% for item in transcript_data %} {% endfor %}
{{ item.speaker }} {{ item.content }}
{% endblock %}