{% extends 'base.html' %} {% block title %}My Blueprints - Open Swarm{% endblock %} {% block content %}

My Blueprints

Your personal collection of installed and custom blueprints. Run them directly from here.

Installed

{{ installed_blueprints|length }}

Custom Created

{{ custom_blueprints|length }}

Total

{{ installed_blueprints|length|add:custom_blueprints|length }}

Ready to Run

{{ installed_blueprints|length|add:custom_blueprints|length }}

{% if installed_blueprints %}

Installed Blueprints

{% for blueprint in installed_blueprints %}
{{ blueprint.name }}
{{ blueprint.category_info.name }}
Installed

{{ blueprint.description }}

{% endfor %}
{% endif %} {% if custom_blueprints %}

Custom Blueprints

{% for blueprint in custom_blueprints %}
{{ blueprint.name }}
{{ blueprint.category }}
Custom

{{ blueprint.description }}

{% if blueprint.tags %}
{% for tag in blueprint.tags %} {{ tag }} {% endfor %}
{% endif %}
{% endfor %}
{% endif %} {% if not installed_blueprints and not custom_blueprints %}

No Blueprints Yet

You haven't added any blueprints to your library yet. Start by browsing the library or creating your own custom blueprint.

{% endif %}
{% endblock %}