mobile responsiveness #43

Merged
ismail merged 15 commits from frontend into main 2025-12-02 13:06:04 +03:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit bfa36091c1 - Show all commits

View File

@ -22,7 +22,8 @@
</a>
{% if message.recipient == request.user %}
<a href="{% url 'message_mark_unread' message.id %}"
class="btn btn-outline-warning"
class="btn btn-outline-warning"
hx-swap="outerHTML"
hx-post="{% url 'message_mark_unread' message.id %}">
<i class="fas fa-envelope"></i> {% trans "Mark Unread" %}
</a>

View File

@ -95,7 +95,7 @@
<tr class="{% if not message.is_read %}table-secondary-theme-light{% endif %}">
<td>
<a href="{% url 'message_detail' message.id %}"
class="{% if not message.is_read %}fw-bold text-primary-theme text-decoration-none{% endif %}">
class="fw-bold text-primary-theme text-decoration-none">
{{ message.subject|truncatechars:50 }}
</a>
{% if message.parent_message %}