TaskFlow/templates/deleted.html

52 lines
1.7 KiB
HTML
Raw Normal View History

2015-11-21 21:20:51 +08:00
{{template "_head.html" .}}
2015-11-21 12:31:14 +08:00
<!--end mainHeader -->
{{if .}}
<a href="/delete/all">
2016-02-06 14:55:31 +08:00
<button class="btn-danger btn glyphicon glyphicon-trash floating-action-icon"></button>
2015-11-21 12:31:14 +08:00
</a>
{{end}}
<div class="timeline">
2016-02-06 14:55:50 +08:00
{{ if .Tasks}}
{{range .Tasks}}
2016-02-06 14:55:31 +08:00
<div class="note">
<p class="noteHeading">{{.Title}}</p> <span class="toggle glyphicon glyphicon-resize-full"></span>
<span class="noteContent">{{.Content}}</span>
<span class="notefooter">
2015-11-21 18:42:14 +08:00
<ul class="menu">
<!-- <li role="presentation">
<a role="menuitem" tabindex="-1" href="/share/{{.Id}}">
<span class="glyphicon glyphicon-share"></span> Share</a>
2016-02-06 14:55:31 +08:00
</li>
<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="/archive/{{.Id}}">
<span class="glyphicon glyphicon-inbox"></span> Edit</a>
</li>!-->
<li role="presentation">Priority: {{.Priority}}</li>
<li role="presentation">
<a role="menuitem" tabindex="-1" href="/delete/{{.Id}}">
<span class="glyphicon glyphicon-trash"></span></a>
</li>
<li role="presentation">
<a role="menuitem" tabindex="-1" href="/restore/{{.Id}}">
<span class="glyphicon glyphicon-inbox"></span></a>
</li>
</ul>
</span>
2015-11-21 18:42:14 +08:00
</div>
2016-02-06 14:55:31 +08:00
{{end}} {{else}}
<div class="note">
<p class="noteHeading">No Tasks here</p>
<p class="notefooter">Go to home page <a href="/">here</a> </p>
</div>
{{end}}
2015-11-21 12:31:14 +08:00
</div>
2016-01-23 21:47:34 +08:00
{{template "footer.html"}}
2015-11-21 12:31:14 +08:00
</body>
2016-02-06 14:55:31 +08:00
</html>