diff options
author | gnowgi <nagarjun@gnowledge.org> | 2012-03-15 16:19:20 +0530 |
---|---|---|
committer | gnowgi <nagarjun@gnowledge.org> | 2012-03-15 16:19:20 +0530 |
commit | 7a4f561e851fdc7246d804c3abb6748b8a4199a6 (patch) | |
tree | d2afc3463fd49625a9be482012f5c3bfcf7c42b9 /demo/graphviz/templates/graphviz/dot_file.dot | |
download | gnowsys-7a4f561e851fdc7246d804c3abb6748b8a4199a6.tar.gz |
master trunk of gnowsys-studio
Diffstat (limited to 'demo/graphviz/templates/graphviz/dot_file.dot')
-rw-r--r-- | demo/graphviz/templates/graphviz/dot_file.dot | 6 |
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 00000000..1b097ea9 --- /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 |