{% extends 'base.html' %}{% block heading %}Five Strategic Questions + Whys{% endblock %}{% block content %}{% include '_project_bar.html' %}
THE ORIGINAL FIVE QUESTIONS · NOW WITH THEIR OWN WHY CHAINS

Finish one strategic question from Need through Fantasy before moving on.

Each question owns a connected chain. Start with its Need/Goal, then Wize asks WHY? immediately. Why 1 becomes Wish, Why 2 becomes Dream, and Why 3 becomes Fantasy. Every level must be written as I need to ___ so that I can ___.

FormatNEED → WHYsame sentence grammar every time
HOW TO USE THIS PAGE
  1. 1

    Choose a strategic question below.

  2. 2

    Write its concrete Need: “I need to ___ so that I can ___.” This Need becomes the Goal on Reports.

  3. 3

    Immediately answer WHY with another complete Wize statement. That answer becomes Wish.

  4. 4

    Ask WHY again for Dream, then once more for Fantasy.

  5. 5

    PERT-test the original Need Goal. The deeper levels explain purpose; they are not the item being estimated.

{% for q in questions %}{% set chain=chains.get(q,[]) %}
QUESTION {{loop.index}}

{{q}}

{{'Continue' if chain else 'Start'}} →
{% if chain %}
{% for r in chain %}
{{r.level}}{% if r.level=='Wish' %} / Why 1{% elif r.level=='Dream' %} / Why 2{% elif r.level=='Fantasy' %} / Why 3{% endif %}

I need to {{r.need}} so that I can {{r.so_that}}.

{% if not loop.last %}WHY? ↓{% endif %}{% endfor %}
{% else %}

No Need yet. Start this question with one concrete “I need to… so that I can…” statement.

{% endif %}

{{chain|length}} / 4 levels complete

{% endfor %}
EXAMPLE

What is Winning?

Need: I need to make money so that I can buy a car.

WHY? / Wish: I need to have reliable transportation so that I can get to work consistently.

WHY? / Dream: I need to buy a house so that I can cut down on rent and build stability.

WHY? / Fantasy: I need to build long-term financial freedom so that I can choose how I spend my time.

{% endblock %}