{% extends "base.html" %} {% block title %}Spark - {{ guide.title }} Setup Guide{% endblock %} {% block head %} {% endblock %} {% block content %}
{% if guide.icon %}
{% endif %}

{{ guide.title }} Setup Guide

{{ guide.summary }}

{% if guide.links %}
{% for link in guide.links %} {{ link.label }} {% endfor %}
{% endif %} {% if guide.prerequisites %}
Prerequisites
    {% for prereq in guide.prerequisites %}
  • {{ prereq }}
  • {% endfor %}
{% endif %}
Step-by-Step Setup
{% for step in guide.steps %}
{{ step.title }}

{{ step.description }}

{% if step.substeps %}
    {% for sub in step.substeps %}
  1. {{ sub }}
  2. {% endfor %}
{% endif %} {% if step.screenshot %} {{ step.screenshot_alt | default(step.title) }} {% elif step.screenshot_placeholder %}
{{ step.screenshot_placeholder }}
{% endif %} {% if step.tip %}
Tip: {{ step.tip }}
{% endif %}
{% endfor %}
{% if guide.spark_config %}
Configure in Spark
{% for step in guide.spark_config %}
{{ step.title }}

{{ step.description }}

{% if step.screenshot_placeholder %}
{{ step.screenshot_placeholder }}
{% endif %}
{% endfor %}
{% endif %} {% if guide.troubleshooting %}
Troubleshooting
{% for item in guide.troubleshooting %}
{{ item.problem }}

{{ item.solution }}

{% endfor %}
{% endif %}
Back to Provider Settings
{% endblock %}