{% extends "base.html" %} {% block title %}{{ design.name }} — Infrastructure Canvas — ICDEV{% endblock %} {% block content %}
Palette
Snippets
{% for catname, catdata in objects.items() %} {% if catdata is mapping %}
{{ catname | replace('_', ' ') | title }}
{% for csp, items in catdata.items() %} {% for obj in items %}
{{ obj.icon }} {{ obj.label }}
{% endfor %} {% endfor %}
{% elif catdata is iterable %}
{{ catname | replace('_', ' ') | title }}
{% for obj in catdata %}
{{ obj.icon }} {{ obj.label }}
{% endfor %}
{% endif %} {% endfor %}

Loading snippets...

IDC v1.0 | {{ design.classification or 'CUI' }} | {{ design.id }}
Results
{% endblock %}