{% extends "base.html" %} {% block title %}EM Node Configuration{% endblock %} {% block content %}

Extended Matrix Node Configuration

Manage node types for GraphML export. Built-in types are read-only, custom types can be added/edited/deleted.

Reload Config
{% for node_type in stratigraphic_types %}
{{ node_type.id }} {% if node_type.custom %} Custom {% else %} Built-in {% endif %}
{{ node_type.name }}
{% if node_type.description %}

{{ node_type.description }}

{% endif %}
Label Format:
{{ node_type.label_format }}
Symbol Type:
{% if node_type.symbol_type == 'single_arrow' %} > / < {% else %} >> / << {% endif %}
Shape:
{{ node_type.visual.shape }}
Colors:
{% if node_type.custom %} {% endif %}
{% endfor %}
{% for node_type in non_stratigraphic_types %}
{{ node_type.id }} {% if node_type.custom %} Custom {% else %} Built-in {% endif %}
{{ node_type.name }}
{% if node_type.description %}

{{ node_type.description }}

{% endif %}
Label Format:
{{ node_type.label_format }}
Symbol Type:
{% if node_type.symbol_type == 'single_arrow' %} > / < {% else %} >> / << {% endif %}
Shape:
{{ node_type.visual.shape }}
Colors:
{% if node_type.custom %} {% endif %}
{% endfor %}
{% endblock %}