2026-01-27 13:48:59 -05:00
|
|
|
{% extends "core/base.html" %}
|
2026-03-04 00:07:10 -05:00
|
|
|
{% load lyric_extras %}
|
2026-01-27 13:48:59 -05:00
|
|
|
|
2026-03-06 21:34:43 -05:00
|
|
|
{% block title_text %}Dashboard{% endblock title_text %}
|
2026-04-04 13:49:48 -04:00
|
|
|
{% block header_text %}
|
|
|
|
|
{% if user.is_authenticated %}
|
2026-05-09 00:14:14 -04:00
|
|
|
<span>Dash</span><span>board</span>
|
2026-04-04 13:49:48 -04:00
|
|
|
{% else %}
|
2026-05-09 00:14:14 -04:00
|
|
|
<span>Howdy </span><span>stranger</span>
|
2026-04-04 13:49:48 -04:00
|
|
|
{% endif %}
|
|
|
|
|
{% endblock header_text %}
|
2026-02-08 21:43:58 -05:00
|
|
|
|
|
|
|
|
{% block scripts %}
|
|
|
|
|
{% include "apps/dashboard/_partials/_scripts.html" %}
|
|
|
|
|
{% endblock scripts %}
|
2026-03-02 13:57:03 -05:00
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
{% if user.is_authenticated %}
|
2026-03-15 01:17:09 -04:00
|
|
|
<div id="id_dash_content" class="dashboard-page">
|
2026-03-06 18:14:01 -05:00
|
|
|
{% include "apps/dashboard/_partials/_applets.html" %}
|
2026-03-15 16:39:14 -04:00
|
|
|
{% include "apps/applets/_partials/_gear.html" with menu_id="id_dash_applet_menu" %}
|
2026-03-06 18:14:01 -05:00
|
|
|
</div>
|
2026-04-18 02:05:27 -04:00
|
|
|
<div id="id_tooltip_portal" class="token-tooltip" style="display:none;"></div>
|
rename natus → sky across the codebase — natal chart abstraction is now sky throughout, since chart inputs aren't birthday-gated
Mechanical rename: 5 files (sky-wheel.js, _sky.scss, _sky_overlay.html, SkyWheelSpec.js x2), 24 in-place edits across templates/views/urls/SCSS/JS/tests/CLAUDE.md. URL names epic:natus_save → epic:sky_save (epic namespaced, no clash w. dashboard:sky_save), JS module NatusWheel → SkyWheel, DOM ids id_natus_* → id_sky_*, BEM classes natus-* → sky-*, dashboard sky_natus_data/sky_natus_preview collapsed to sky_data/sky_preview_data. No DB migration needed (User.sky_chart_data + GameEvent.SKY_SAVED already used sky-prefix). 778 ITs + Jasmine green.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-04 20:36:15 -04:00
|
|
|
<div id="id_sky_tooltip" class="tt" style="display:none;"></div>
|
|
|
|
|
<div id="id_sky_tooltip_2" class="tt" style="display:none;"></div>
|
2026-03-02 13:57:03 -05:00
|
|
|
{% endif %}
|
|
|
|
|
{% endblock content %}
|