aboutsummaryrefslogtreecommitdiff
path: root/apps/dreki_web/templates/world_graph_dot.dtl
blob: 4a0fde0e791147b412c09137f99c67e6ae7f2b1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
graph {
  class="world-graph dark:bg-gray-800 bg-gray-200 text-white dark:text-gray-200"
  bgcolor="transparent"
{% for vertice in vertices %}
  "{{vertice.node}}" [label="{{vertice.name}}"] [class="world-graph-vertice-{{ vertice.type }}"] [color=white] [style=filled] [fillcolor="{{vertice.color}}"] [shape={{vertice.shape}}]
{% endfor %}

{% for edge in edges %}
  "{{edge.from}}" -- "{{edge.to}}"
{% endfor %}
}