- _computeConjunctions(planets, threshold=8) detects conjunct pairs - Tick lines (nw-planet-tick) radiate from each planet circle outward past the zodiac ring; animated via attrTween; styled with --pri* colours - planetEl.raise() on mouseover puts hovered planet on top in SVG z-order - Dual tooltip: hovering a conjunct planet shows #id_natus_tooltip_2 beside the primary, populated with the hidden partner's sign/degree/retrograde data - #id_natus_tooltip_2 added to home.html, sky.html, room.html - _natus.scss: tick line rules + both tooltip IDs share all selectors; #id_natus_confirm gets position:relative/z-index:1 to fix click intercept - NatusWheelSpec.js: T7 (tick extends past zodiac), T8 (raise to front), T9j (conjunction dual tooltip) in new conjunction describe block - FT T3 trimmed to element-ring hover only; planet/conjunction hover delegated to Jasmine (ActionChains planet-circle hover unreliable in Firefox) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
28 lines
971 B
HTML
28 lines
971 B
HTML
{% extends "core/base.html" %}
|
|
{% load lyric_extras %}
|
|
|
|
{% block title_text %}Dashboard{% endblock title_text %}
|
|
{% block header_text %}
|
|
{% if user.is_authenticated %}
|
|
<span>Dash</span>board
|
|
{% else %}
|
|
<span>Howdy </span>stranger
|
|
{% endif %}
|
|
{% endblock header_text %}
|
|
|
|
{% block scripts %}
|
|
{% include "apps/dashboard/_partials/_scripts.html" %}
|
|
{% endblock scripts %}
|
|
|
|
{% block content %}
|
|
{% if user.is_authenticated %}
|
|
<div id="id_dash_content" class="dashboard-page">
|
|
{% include "apps/dashboard/_partials/_applets.html" %}
|
|
{% include "apps/applets/_partials/_gear.html" with menu_id="id_dash_applet_menu" %}
|
|
</div>
|
|
<div id="id_tooltip_portal" class="token-tooltip" style="display:none;"></div>
|
|
<div id="id_natus_tooltip" class="tt" style="display:none;"></div>
|
|
<div id="id_natus_tooltip_2" class="tt" style="display:none;"></div>
|
|
{% endif %}
|
|
{% endblock content %}
|