stats.html 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {{define "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/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/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. <th>昨日独立IP数</th>
  32. <th>过去七日点击量</th>
  33. <th>过去七日独立IP数</th>
  34. <th>当月点击量</th>
  35. <th>当月独立IP数</th>
  36. <th>总点击量</th>
  37. <th>总独立IP数</th>
  38. <th>操作</th>
  39. </tr>
  40. </thead>
  41. <tbody>
  42. {{range .shortUrls}}
  43. <tr {{if not .Valid}}class="negative"{{end}}>
  44. <td class="collapsing"><a href="{{$.prefix}}{{.ShortUrl.ShortUrl}}" target="_blank">{{.ShortUrl.ShortUrl}}</a></td>
  45. <td class="center aligned collapsing">{{.CreatedAt | date "2006-01-02 15:04:05"}}</td>
  46. <td>{{if .ShortUrl.Memo.Valid}}{{.ShortUrl.Memo.String}}{{else}}--{{end}}</td>
  47. <td>{{.TodayCount}}</td>
  48. <td>{{.DistinctTodayCount}}</td>
  49. <td>{{.YesterdayCount}}</td>
  50. <td>{{.DistinctYesterdayCount}}</td>
  51. <td>{{.Last7DaysCount}}</td>
  52. <td>{{.DistinctLast7DaysCount}}</td>
  53. <td>{{.MonthlyCount}}</td>
  54. <td>{{.DistinctMonthlyCount}}</td>
  55. <td>{{.TotalCount}}</td>
  56. <td>{{.DistinctTotalCount}}</td>
  57. <td><a href="/admin/access_logs?url={{.ShortUrl.ShortUrl}}" target="_blank">查看访问日志</a></th>
  58. </tr>
  59. {{end}}
  60. </tbody>
  61. <tfoot>
  62. <tr>
  63. <th colspan="14" class="center aligned">
  64. {{if not .first_page}}
  65. <a class="ui small labeled icon button" href="/admin/stats?url={{.url}}&page={{sub .page 1}}"><i class="arrow alternate circle left outline icon"></i>上一页</a>
  66. {{end}}
  67. {{if not .last_page}}
  68. <a class="ui small labeled icon button" href="/admin/stats?url={{.url}}&page={{add .page 1}}"><i class="arrow alternate circle right outline icon"></i>下一页</a>
  69. {{end}}
  70. </th>
  71. </tr>
  72. </tfoot>
  73. </table>
  74. </div>
  75. </div><!--end fo grid-->
  76. </div><!--end of segment-->
  77. </div><!--end of pusher-->
  78. {{end -}}