transmet/templates/pages/export.html

22 lines
592 B
HTML
Raw Normal View History

{{define "body"}}
<h2 class="list-heading">List</h2>
{{template "flashes" .}}
2015-09-24 06:12:57 +02:00
<textarea class="form-control" name="template" placeholder="Template" rows="16" cols="80">{{.template}}</textarea>
2015-05-14 08:12:39 +02:00
2015-09-24 06:12:57 +02:00
<div class="row">
<div class="col-xs-2">
<button class="confirm-export btn btn-lg btn-primary btn-block" type="submit">Export</button>
</div>
2015-05-14 17:29:01 +02:00
2015-09-24 06:12:57 +02:00
<div class="col-xs-6">
Click this to mark the current queue of news items as exported (clearing them)
</div>
<div class="col-xs-2"></div>
<div class="col-xs-2"><b>{{.count}}</b> news items</div>
2015-05-12 07:50:09 +02:00
2015-05-16 21:48:42 +02:00
</div>
2015-05-14 08:12:39 +02:00
{{end}}