{% extends "base.html" %} {% block title %}Interpretacje{% endblock %} {% block nav_interp %}active{% endblock %} {% block content %}

Program policzy horoskop i wyszuka w bazie interpretacje pasujące do obliczeń (pierwsza wersja: planeta w swoim znaku).

{% if error %}
{{ error }}
{% endif %} {% if result %} {% if result.data_error %}
{{ result.data_error }}
{% endif %}
Silnik: {{ result.engine }} {% if result.provider %}· baza: {{ result.provider }}{% endif %} {% if moment %}· moment: {{ moment }}{% endif %}
{% for o in result.objects %}
{{ o.object }} w {{ o.sign }}{% if o.house %}, {{ o.house }}. dom{% endif %} {{ o.direction }} (planeta {{ o.planet_token }}: {{ o.planet_total }} rekordów)
{% for f in o.facets %}
{{ f.label }} — {{ f.count }} dopasowań siła {{ f.score }} [{{ f.token }}]
{% if f.groups %} {% for g in f.groups %} {% endfor %}
{{ g.effect }}{% if g.count > 1 %} ×{{ g.count }}{% endif %} {{ g.significators | join('; ') }}
{% elif f.samples %} {% for s in f.samples %} {% endfor %}
{{ s.expanded }}{{ s.effect }}
{% endif %}
{% endfor %}
{% endfor %} {% endif %} {% endblock %}