{% extends "base.html" %} {% block title %}{% trans %}Create a service{% endtrans %}{% endblock %} {% block subtitle %}{% trans %}pick a protocol{% endtrans %}{% endblock %} {% set colors = ['blue', 'green', 'orange', 'teal', 'red', 'purple', 'maroon'] %} {% block content %}
{% for protocol in protocols %} {% import "protocol_" + protocol + ".html" as protocol_macros %}
{% trans %}Create {% endtrans %}{{ protocol_macros.name() }}

{{ protocol_macros.name() }}

{{ protocol_macros.description() }} 
{% endfor %}
{% endblock %}