oasupport/clientapp/templates/clientapp/index.html
2025-12-03 11:16:47 +03:00

48 lines
1.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends 'clientapp/base.html' %}
{% load static %}
{% block title %} {{ title }} {% endblock %}
{% block content %}
<p class="hello">
Рады вас видеть в службе технической поддержки,
<b class="color-primary">{% if user.first_name %}{{ user.first_name }}{% else %}пользователь {{ user.username }} без имени{% endif %}</b>.
Чем можем помочь?
</p>
<div class="top-buttons">
<a href="{% url 'new-call' %}" class="btn-primary mr-05">Создать обращение</a>
<a href="{% url 'calls-archive' %}" class="btn-secondary">Архив</a>
</div>
<div class="card">
<h2>Открытые обращения</h2>
<ul class="calls-list-compact">
{% if calls %}
{% for call in calls %}
<li class="calls-list-compact__item">
<h3><a href="{% url 'call-detail' call.id %}">#{{ call.id }}: {{ call.title }}</a></h3>
<div class="info-bar">
{% if call.status %}
<span style="border-radius: 4px; font-size: 12px; padding: 2px 6px; {{ call.status.css_styles }}">{{ call.status }}</span>
{% else %}
<span class="date">Обращение принято, статус пока не установлен.</span>
{% endif %}
<span class="date">{{ call.created }}</span>
</div>
</li>
{% endfor %}
{% else %}
<p>У вас нет открытых обращений</p>
{% endif %}
</ul>
</div>
{% endblock %}