Files
gogo-telefon/gogo/templates/dashboard/calls.html

23 lines
859 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block title %}Pozivi — {{ owner.tenant.name }}{% endblock %}
{% block nav %}{% include "dashboard/_nav.html" %}{% endblock %}
{% block content %}
<h1>Historija poziva</h1>
<div class="card">
<table>
<tr><th>Vrijeme</th><th>Broj</th><th>Trajanje</th><th>Ishod</th><th></th></tr>
{% for c in calls %}
<tr>
<td class="muted">{{ c.started_at.strftime('%d.%m. %H:%M') }}</td>
<td>{{ c.caller_msisdn or '—' }}</td>
<td>{{ c.duration_s // 60 }}:{{ '%02d' % (c.duration_s % 60) }}</td>
<td><span class="badge {{ c.outcome }}">{{ outcome_labels.get(c.outcome, c.outcome) }}</span></td>
<td><a class="btn small ghost" href="/dash/calls/{{ c.id }}">Detalji</a></td>
</tr>
{% else %}
<tr><td colspan="5" class="muted">Još nema zabilježenih poziva.</td></tr>
{% endfor %}
</table>
</div>
{% endblock %}