summaryrefslogtreecommitdiff
path: root/demo/graphviz/templates/graphviz/dot_file.dot
diff options
context:
space:
mode:
Diffstat (limited to 'demo/graphviz/templates/graphviz/dot_file.dot')
-rw-r--r--demo/graphviz/templates/graphviz/dot_file.dot6
1 files changed, 6 insertions, 0 deletions
diff --git a/demo/graphviz/templates/graphviz/dot_file.dot b/demo/graphviz/templates/graphviz/dot_file.dot
new file mode 100644
index 0000000..1b097ea
--- /dev/null
+++ b/demo/graphviz/templates/graphviz/dot_file.dot
@@ -0,0 +1,6 @@
+
+digraph G {
+ {% for edge in graph.edges %}
+ "{{ edge.start_node_label }}" -> "{{ edge.end_node_label }}" [label = "{{ edge.label }}"];
+ {% endfor %}
+} \ No newline at end of file