A webmail client. Forked from https://git.sr.ht/~migadu/alps
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

34 lines
919 B

  1. <div class="message-list-checkbox">
  2. <input type="checkbox" id="action-checkbox-all"/>
  3. </div>
  4. <div class="actions-wrap">
  5. <div class="actions-contacts">
  6. <div class="action-group">
  7. <button form="address-book-form" formaction="TODO">Delete</button>
  8. </div>
  9. </div>
  10. <form method="get" class="actions-search action-group">
  11. <input
  12. type="text"
  13. name="query"
  14. value="{{.Query}}"
  15. placeholder="Search {{.AddressBook.Name}} contacts...">
  16. <button>Search</button>
  17. </form>
  18. {{/*
  19. {{if or (ge .PrevPage 0) (ge .NextPage 0) }}
  20. <div class="actions-pagination">
  21. {{if ge .PrevPage 0}}
  22. {{if ge .PrevPage 1}}<a href="?page=0" class="button-link">«</a>{{ end }}
  23. <a href="?page={{.PrevPage}}" class="button-link">«</a>
  24. {{end}}
  25. {{if ge .NextPage 0}}
  26. <a href="?page={{.NextPage}}" class="button-link">»</a>
  27. {{end}}
  28. </div>
  29. {{ end }}
  30. */}}
  31. </div>