2017-04-18 00:34:21 +00:00
|
|
|
{{ template "header" . }}
|
2017-04-18 22:05:42 +00:00
|
|
|
<form action="/motions/{{ .Form.Decision.Tag }}/edit" method="post">
|
2017-04-18 00:34:21 +00:00
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<td>ID:</td>
|
2017-04-18 22:05:42 +00:00
|
|
|
<td>{{ .Form.Decision.Tag }}</td>
|
2017-04-18 00:34:21 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Proponent:</td>
|
|
|
|
<td>{{ .Voter.Name }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Proposed date/time:</td>
|
2017-04-18 22:05:42 +00:00
|
|
|
<td>{{ .Form.Decision.Proposed }}</td>
|
2017-04-18 00:34:21 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Title:</td>
|
|
|
|
<td><input name="Title" value="{{ .Form.Title }}"/>
|
|
|
|
{{ with .Form.Errors.Title }}
|
|
|
|
<span class="error">{{ . }}</span>
|
|
|
|
{{ end }}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Text:</td>
|
|
|
|
<td><textarea name="Content">{{ .Form.Content }}</textarea>
|
|
|
|
{{ with .Form.Errors.Content }}
|
|
|
|
<span class="error">{{ . }}</span>
|
|
|
|
{{ end }}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Vote type:</td>
|
|
|
|
<td>
|
|
|
|
<select name="VoteType">
|
|
|
|
<option value="0"
|
|
|
|
{{ if eq "0" .Form.VoteType }}selected{{ end }}>
|
|
|
|
Motion
|
|
|
|
</option>
|
|
|
|
<option value="1"
|
|
|
|
{{ if eq "1" .Form.VoteType }}selected{{ end }}>Veto
|
|
|
|
</option>
|
|
|
|
</select>
|
|
|
|
{{ with .Form.Errors.VoteType }}
|
|
|
|
<span class="error">{{ . }}</span>
|
|
|
|
{{ end }}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td rowspan="2">Due:</td>
|
|
|
|
<td>(autofilled from option below)</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<select name="Due">
|
|
|
|
<option value="+3 days">In 3 Days</option>
|
|
|
|
<option value="+7 days">In 1 Week</option>
|
|
|
|
<option value="+14 days">In 2 Weeks</option>
|
|
|
|
<option value="+28 days">In 4 Weeks</option>
|
|
|
|
</select>
|
|
|
|
{{ with .Form.Errors.Due }}
|
|
|
|
<span class="error">{{ . }}</span>
|
|
|
|
{{ end }}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td> </td>
|
|
|
|
<td><input type="submit" value="Propose"/></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</form>
|
|
|
|
<a href="/motions/">Back to motions</a>
|
|
|
|
{{ template "footer" . }}
|