-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
05695bd
commit d3ee256
Showing
2 changed files
with
29 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 17 additions & 4 deletions
21
controller/templates/controller/partials/state_machine.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,19 @@ | ||
{% load render_table from django_tables2 %} | ||
<div _="on load if #argsDialog is not null remove #argsDialog"></div> | ||
<form> | ||
{% csrf_token %} | ||
{% render_table table %} | ||
</form> | ||
<div class="row"> | ||
<div class="col-md-auto"> | ||
<form> | ||
{% csrf_token %} | ||
{% render_table table %} | ||
</form> | ||
</div> | ||
<div class="col-md-auto"> | ||
<pre class="mermaid"> | ||
{% comment %} flowchart TD {% endcomment %} | ||
{% comment %} A[Start] --> B{Decision?} {% endcomment %} | ||
{% comment %} B -- Yes --> C[Task 1] {% endcomment %} | ||
{% comment %} B -- No --> D[Task 2] {% endcomment %} | ||
{% comment %} C & D --> E[End] {% endcomment %} | ||
</pre> | ||
</div> | ||
</div> |