{% extends "base.html" %} {% block title %}Horoskop{% endblock %} {% block nav_chart %}active{% endblock %} {% block content %}

Wpisz dane momentu i miejsca — program policzy pozycje obiektów, osie i domy (silnik efemeryd warstwy logicznej).

{% if error %}
{{ error }}
{% endif %} {% if result %}
Silnik: {{ result.engine }} · obiektów: {{ result.positions | length }} {% if result.house_system %}· domy: {{ result.house_system }}{% endif %} {% if moment %}· moment: {{ moment }}{% endif %}
{% if result.angles %} {% for key in ["Asc", "MC", "Dsc", "IC"] %} {% set a = result.angles[key] %} {% endfor %}
ZnakW znaku
{{ a.name }}{{ a.sign }}{{ a.in_sign }}
{% endif %} {% for p in result.positions %} {% endfor %}
ObiektZnakW znakuDomKier.Prędkość °/d
{{ p.name }} {{ p.sign }} {{ p.in_sign }} {{ p.house if p.house is defined else '—' }} {{ p.direction }} {{ '%+.4f' | format(p.speed) }}
{% set with_stations = result.positions | selectattr('stations', 'defined') | list %} {% if with_stations %}
Stacje planet (poprzednia / następna; blisko = mniej niż 7 dni)
{% for p in with_stations %} {% endfor %}
PlanetaPoprzedniaNastępna
{{ p.name }}{% if p.stations.station_soon %} blisko{% endif %} {% if p.stations.prev %}{{ p.stations.prev.type }} · {{ p.stations.prev.date }} · {{ p.stations.prev.degree }} ({{ p.stations.prev.days }} d){% else %}—{% endif %} {% if p.stations.next %}{{ p.stations.next.type }} · {{ p.stations.next.date }} · {{ p.stations.next.degree }} (+{{ p.stations.next.days }} d){% else %}—{% endif %}
{% endif %} {% if result.aspects %}
Aspekty główne ({{ result.aspects | length }})
{% for a in result.aspects %} {% endfor %}
Obiekt 1AspektObiekt 2OrbA/S
{{ a.obj1 }}{{ a.aspect }}{{ a.obj2 }}{{ '%.2f'|format(a.orb) }}°{{ a['as'] if a['as'] is defined else '—' }}
{% endif %} {% if result.cusps %}
Cusps domów ({{ result.house_system }}) {% for c in result.cusps %} {% endfor %}
DomZnakCusp
{{ c.house }}{{ c.sign }}{{ c.in_sign }}
{% endif %} {% endif %} {% endblock %}