41 lines
2.1 KiB
HTML
41 lines
2.1 KiB
HTML
{{template "_head.html" .}}
|
|
<div class="timeline">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h4 class="modal-title" id="newNoteLabel"><span class="glyphicon glyphicon-pencil"></span> Edit Task</h4>
|
|
</div>
|
|
{{ $categories := .Categories }} {{$referer := .Referer}} {{range $index, $task := .Tasks}}
|
|
<div class="modal-body">
|
|
<form action="/update/" method="POST">
|
|
<div class="form-group">
|
|
<input type="text" name="title" value="{{ $task.Title}}" class="form-control" id="add-note-title" placeholder="Title">
|
|
</div>
|
|
<div class="form-group">
|
|
<textarea class="form-control" name="content" id="add-note-content" placeholder="Content" rows="10" >{{ $task.Content}}</textarea>
|
|
|
|
<input type="text" name="id" value="{{.Id}}" class="hidden" /> Priority:
|
|
<input type="radio" name="priority" value="3" {{if eq .Priority "3"}} checked="checked" {{end}} /> High
|
|
<input type="radio" name="priority" value="2" {{if eq .Priority "2"}} checked="checked" {{end}} /> Medium
|
|
<input type="radio" name="priority" value="1" {{if eq .Priority "1"}} checked="checked" {{end}} /> Low
|
|
</div>
|
|
<input type="checkbox" name="hide" id="hideChk"> Hide from timeline
|
|
Category:
|
|
<select name="category">
|
|
<option>---</option>
|
|
{{range $index, $cat := $categories}}
|
|
<option value="{{$cat.Name}}" {{if eq $cat.Name $task.Category}} selected="true" {{end}}> {{$cat.Name}} </option>
|
|
{{end}}
|
|
</select>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<a href="{{$referer}}" ><button type="button" class="btn btn-default" data-dismiss="modal">Close</button></a>
|
|
<input type="submit" value="Submit" class="btn btn-default" />
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{{end}} {{template "_footer.html"}}
|
|
|
|
</body>
|
|
|
|
</html> |