Tasks/templates/search.html

44 lines
1.5 KiB
HTML
Raw Normal View History

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