<div class="row">
	<div class="col-6 offset-3 col-sm-8 offset-sm-2 col-lg-6 offset-lg-3">
		<p class="description">This module comes with {{ data.mod_wizards_count }} Wizard(s).</p>
		<p class="description">Please click the link below of the Guided Wizard you'd like to launch.</p>
	</div>
</div>
{% for wizard in data.mod_wizards %}
<div class="row">
	<div class="col-8 offset-2">
		<div class="wizard_slot">
			<div><h5>{{ wizard.title }}</h5></div>
			<div>
				<p class="description">{{ wizard.desc }}</p>
				{% if wizard.has_premium %}
					<p class="description">{{ strings.premium_note }}</p>
				{% endif %}
			</div>
			<div>
				{% if wizard.available %}
					<a class="btn btn-info" href="{{ wizard.url }}" target="_blank">Launch Wizard</a>
				{% else %}
					<button class="btn btn-outline-dark" disabled>Not Available</button>
				{% endif %}
			</div>
		</div>
	</div>
</div>
{% endfor %}