{% extends "ai/base_ai.html" %}
{% block title %}Thank you | Artificial Intellegence{% endblock %}
{% block head_extra %}{% endblock %}
{% block meta_copydoc %}
https://docs.google.com/document/d/1fLjt6qfj8p03d0wTZdN_yWbBcoi4umT2lGeiFT_c6NQ/edit
{% endblock meta_copydoc %}
{% block content %}
{% if product == 'ai-index-workshop' %}
{% with thanks_context="enquiring about our AI workshop" %}
{% include "shared/_thank_you.html" %}
{% endwith %}
{% elif product == 'ai-index-assessment' %}
{% with thanks_context="enquiring about our ML / Data Science assessment" %}
{% include "shared/_thank_you.html" %}
{% endwith %}
{% elif product == 'ai-index-managed' %}
{% with thanks_context="contacting our team.", thanks_message="We will be in touch shortly." %}
{% include "shared/_thank_you.html" %}
{% endwith %}
{% elif product == 'ai-install' %}
{% with thanks_context="enquiring about installing Kubeflow" %}
{% include "shared/_thank_you.html" %}
{% endwith %}
{% elif product == 'ai-consulting' %}
{% with thanks_context="enquiring about Canonical consulting" %}
{% include "shared/_thank_you.html" %}
{% endwith %}
{% elif product == 'ai-features' %}
{% with thanks_context="enquiring about AI on Canonical" %}
{% include "shared/_thank_you.html" %}
{% endwith %}
{% elif product == 'ai-data-science' %}
{% with thanks_context="enquiring about Data Science Stack" %}
{% include "shared/_thank_you.html" %}
{% endwith %}
{% else %}
{% with thanks_context="enquiring about AI" %}
{% include "shared/_thank_you.html" %}
{% endwith %}
{% endif %}
{% endblock content %}
{% block footer_extra %}
{{ marketo }}
{% endblock footer_extra %}