summaryrefslogtreecommitdiff
path: root/boardvoting/templates/motion.html
diff options
context:
space:
mode:
Diffstat (limited to 'boardvoting/templates/motion.html')
-rw-r--r--boardvoting/templates/motion.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/boardvoting/templates/motion.html b/boardvoting/templates/motion.html
new file mode 100644
index 0000000..8fc7530
--- /dev/null
+++ b/boardvoting/templates/motion.html
@@ -0,0 +1,19 @@
+{{ template "header" . }}
+{{ $voter := .Voter }}
+<div class="column">
+ <div class="ui basic segment">
+ <div class="ui floated right secondary menu">
+ <a href="/motions/" class="item" title="Show all votes">All votes</a>
+ {{ if $voter }}<a href="/motions/?unvoted=1" class="item" title="Show my outstanding votes">My outstanding votes</a>{{ end }}
+ </div>
+ </div>
+</div>
+{{ with .Decision }}
+<div class="column">
+ <div class="ui raised segment">
+ {{ template "motion_fragment" . }}
+ {{ if $voter }}{{ template "motion_actions" . }}{{ end }}
+ </div>
+</div>
+{{ end}}
+{{ template "footer" . }} \ No newline at end of file