Files
quantumbotx/templates/notifications.html
T
chrisnov-it f930f26839 Add CLAUDE.md + dark mode sweep across all 12 remaining templates
- CLAUDE.md: project overview, architecture, conventions, key files
- Dark mode now covers: trading_bots, portfolio, backtesting, history,
  bot_detail, backtest_history, settings, notifications, profile,
  ramadan, forex, stocks — all 12 templates
- Consistent dark:bg-slate-800/700/900 + dark:text-gray-*/white patterns

Co-Authored-By: Claude <noreply@anthropic.com>
2026-06-23 13:33:04 +08:00

20 lines
798 B
HTML

<!-- templates/notifications.html (Setelah Refactor) -->
{% extends "base.html" %}
{% block title_key %}nav.notifications{% endblock %}
{% block title %}Notifikasi{% endblock %}
{% block content %}
<h2 class="text-2xl font-bold text-gray-800 dark:text-white mb-6" data-i18n="nav.notifications">Notifikasi</h2>
<div class="bg-white dark:bg-slate-800 rounded-lg shadow dark:shadow-slate-900/50">
<!-- Kontainer ini akan diisi oleh JavaScript -->
<div id="notifications-container" class="divide-y divide-gray-200">
<p class="p-6 text-center text-gray-500 dark:text-gray-400" data-i18n="notifications.loading">Memuat notifikasi...</p>
</div>
</div>
{% endblock %}
{% block scripts %}
<script src="{{ url_for('static', filename='js/notifications.js') }}"></script>
{% endblock %}