search_stats.html 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {{define "search_stats.html" -}}
  2. {{template "header.html" . -}}
  3. {{template "sidebar.html" . -}}
  4. <div class="pusher">
  5. {{template "admin-left-menu.html" . -}}
  6. {{template "admin-top-menu.html" . -}}
  7. <div id="admin-right-content" class="ui basic segment">
  8. <div class="ui grid stackable padded">
  9. <div class="column">
  10. <table class="ui celled striped table">
  11. <thead>
  12. <tr>
  13. <th colspan="14">
  14. <form id="form-search-url" action="/admin/search_stats" method="get">
  15. <div class="ui labeled action input">
  16. <div class="ui label">{{.prefix}}</div>
  17. <input name="url" type="text" value="{{.url}}" placeholder="短链接">
  18. </div>
  19. <button class="ui teal right labeled icon button" type="submit"><i class="search icon"></i>查询</button>
  20. <a class="ui teal right labeled icon button" href="/admin/search_stats"><i class="undo alternate icon"></i>重置</a>
  21. </form>
  22. </th>
  23. </tr>
  24. <tr>
  25. <th>短链接</th>
  26. <th class="center aligned">生成时间</th>
  27. <th class="center aligned">备注</th>
  28. <th>总点击量</th>
  29. <th>总独立IP数</th>
  30. <th>操作</th>
  31. </tr>
  32. </thead>
  33. <tbody>
  34. {{range .shortUrls}}
  35. <tr {{if not .Valid}}class="negative"{{end}}>
  36. <td class="collapsing"><a href="{{$.prefix}}{{.ShortUrl.ShortUrl}}" target="_blank">{{.ShortUrl.ShortUrl}}</a></td>
  37. <td class="center aligned collapsing">{{.CreatedAt | date "2006-01-02 15:04:05"}}</td>
  38. <td>{{if .ShortUrl.Memo.Valid}}{{.ShortUrl.Memo.String}}{{else}}--{{end}}</td>
  39. <td>{{.TotalCount}}</td>
  40. <td>{{.DistinctTotalCount}}</td>
  41. <td><a href="/admin/access_logs?url={{.ShortUrl.ShortUrl}}" target="_blank">查看访问日志</a></th>
  42. </tr>
  43. {{end}}
  44. </tbody>
  45. <tfoot>
  46. <tr>
  47. <th colspan="14" class="center aligned">
  48. {{if not .first_page}}
  49. <a class="ui small labeled icon button" href="/admin/search_stats?url={{.url}}&page={{sub .page 1}}"><i class="arrow alternate circle left outline icon"></i>上一页</a>
  50. {{end}}
  51. {{if not .last_page}}
  52. <a class="ui small labeled icon button" href="/admin/search_stats?url={{.url}}&page={{add .page 1}}"><i class="arrow alternate circle right outline icon"></i>下一页</a>
  53. {{end}}
  54. </th>
  55. </tr>
  56. </tfoot>
  57. </table>
  58. </div>
  59. </div><!--end fo grid-->
  60. </div><!--end of segment-->
  61. </div><!--end of pusher-->
  62. {{end -}}