github.com/bitcubate/cryptojournal@v1.2.5-0.20171102134152-f578b3d788ab/src/users/views/index.html.got (about)

     1  <article class="users padded">
     2  
     3  <ul class="users">
     4    <li class="user">{{.count}} users, {{.adminsCount}} admins</li>
     5      {{ $0 := . }}
     6      {{ range $i,$m := .users }}
     7        {{ set $0 "i" $i }}
     8        {{ set $0 "user" $m }}
     9        {{ template "users/views/row.html.got" $0 }}
    10      {{ end }}
    11  </ul>
    12  </article>