Tasks/templates/search.html

44 lines
1.5 KiB
HTML
Raw Normal View History

2015-11-21 21:20:51 +08:00
{{template "_head.html" .}}
2016-02-06 14:55:31 +08:00
<div class="timeline">
2016-02-06 14:55:50 +08:00
{{ if .Tasks}}
{{range .Tasks}}
2015-11-18 00:58:03 +08:00
<div class="note">
2016-02-06 14:55:31 +08:00
<p class="noteHeading">{{.Title}}</p> <span class="toggle glyphicon glyphicon-resize-full"></span>
<span class="noteContent">{{.Content}}</span>
<span class="notefooter">
2016-01-23 21:47:34 +08:00
<ul class="menu">
<li role="presentation">Priority: {{.Priority}}</li>
<li role="presentation">
<span class="glyphicon glyphicon-time"></span> {{.Created}}</li>
2016-02-06 14:55:31 +08:00
<!-- <li role="presentation">
2015-11-21 19:03:34 +08:00
<a role="menuitem" tabindex="-1" href="/mask/{{.Id}}">
<span class="glyphicon glyphicon-lock"></span> Mask</a></li> !-->
2016-02-06 14:55:31 +08:00
<li role="presentation">
<a role="menuitem" tabindex="-1" href="/trash/{{.Id}}">
<span class="glyphicon glyphicon-trash"></span></a>
</li>
<li role="presentation">
<a role="menuitem" tabindex="-1" href="/complete/{{.Id}}">
<span class="glyphicon glyphicon-check"></span></a>
</li>
<li role="presentation">
<a role="menuitem" tabindex="-1" href="/edit/{{.Id}}">
<span class="glyphicon glyphicon-pencil"></span></a>
</li>
2015-11-21 19:03:34 +08:00
2016-02-06 14:55:31 +08:00
</ul>
</span>
2015-11-18 00:58:03 +08:00
</div>
{{end}} {{else}}
2015-11-21 18:42:14 +08:00
<div class="note">
2016-02-06 14:55:31 +08:00
<p class="noteHeading">No results found</p>
<p class="notefooter">Go to home page <a href="/">here</a> </p>
2015-11-21 18:42:14 +08:00
</div>
2015-11-18 00:58:03 +08:00
{{end}}
2016-02-06 14:55:31 +08:00
</div>
{{template "_footer.html"}}
2015-11-18 00:58:03 +08:00
2015-11-13 17:04:42 +08:00
2015-11-18 00:58:03 +08:00
</body>
2015-11-13 17:04:42 +08:00
2016-02-06 14:55:31 +08:00
</html>