diff --git a/net_maestro/core/templates/net_maestro/partials/models_list.html b/net_maestro/core/templates/net_maestro/partials/models_list.html new file mode 100644 index 0000000..cb3fe13 --- /dev/null +++ b/net_maestro/core/templates/net_maestro/partials/models_list.html @@ -0,0 +1,58 @@ +
+
+
+
+

Available Component Models

+
+ + + + New Component Model + + {% comment %} + TODO: Hook this up to a dummy form and document future plans + {% endcomment %} +
+ +
+ {% for model in models %} +
+
+
+
+ +

{{ model.name }}

+
+
+
{{ model.type }}
+ {% comment %}
{{ model.engine }}
{% endcomment %} +
+ +
+

{{model.description}}

+
+ {% for param in model.parameters %} +
{{ param}}
+ {% comment %}
{{ model.engine }}
{% endcomment %} + {% endfor%} +
+
+
+ {% empty %} +
+
+ +

No models available

+
+
+ {% endfor %} +
+
+
diff --git a/net_maestro/core/templates/net_maestro/shared/sidebar.html b/net_maestro/core/templates/net_maestro/shared/sidebar.html index 12f59b9..6543e62 100644 --- a/net_maestro/core/templates/net_maestro/shared/sidebar.html +++ b/net_maestro/core/templates/net_maestro/shared/sidebar.html @@ -1,6 +1,21 @@