mirror of
https://github.com/chrisnov-it/quantumbotx.git
synced 2026-07-28 19:27:44 +00:00
53ae5e8861
- Update `app.py` to include backtesting routes and improve blueprint registration. - Modify templates to include an active page parameter for navigation highlighting. - Remove unused `crypto_data.py` and `api_crypto.py`. - Add new backtesting-related files and templates.
18 lines
602 B
HTML
18 lines
602 B
HTML
<!-- templates/notifications.html (Setelah Refactor) -->
|
|
{% extends "base.html" %}
|
|
|
|
{% block title %}Notifikasi{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2 class="text-2xl font-bold text-gray-800 mb-6">Notifikasi</h2>
|
|
<div class="bg-white rounded-lg shadow">
|
|
<!-- 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">Memuat notifikasi...</p>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
<script src="{{ url_for('static', filename='js/notifications.js') }}"></script>
|
|
{% endblock %} |