src/iconolab/templates/partials/annotation_stats_panel.html
author durandn
Thu, 28 Jul 2016 17:07:28 +0200
changeset 85 49b3f22948d5
child 196 105dbb7e80c3
permissions -rw-r--r--
work on stats: calculatestats command for manage.py, stats in item page, stats in annotations list, stats in annotation page, actions increment stats (view count, annotations count, comment count etc)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
85
49b3f22948d5 work on stats: calculatestats command for manage.py, stats in item page, stats in annotations list, stats in annotation page, actions increment stats (view count, annotations count, comment count etc)
durandn
parents:
diff changeset
     1
<div class="panel panel-default">
49b3f22948d5 work on stats: calculatestats command for manage.py, stats in item page, stats in annotations list, stats in annotation page, actions increment stats (view count, annotations count, comment count etc)
durandn
parents:
diff changeset
     2
  <div class="panel-body">
49b3f22948d5 work on stats: calculatestats command for manage.py, stats in item page, stats in annotations list, stats in annotation page, actions increment stats (view count, annotations count, comment count etc)
durandn
parents:
diff changeset
     3
    {% if label %}<label>{{label}}</label>{% endif %}
49b3f22948d5 work on stats: calculatestats command for manage.py, stats in item page, stats in annotations list, stats in annotation page, actions increment stats (view count, annotations count, comment count etc)
durandn
parents:
diff changeset
     4
    <dl class="dl-horizontal">
49b3f22948d5 work on stats: calculatestats command for manage.py, stats in item page, stats in annotations list, stats in annotation page, actions increment stats (view count, annotations count, comment count etc)
durandn
parents:
diff changeset
     5
      <dt>Vues:</dt>
49b3f22948d5 work on stats: calculatestats command for manage.py, stats in item page, stats in annotations list, stats in annotation page, actions increment stats (view count, annotations count, comment count etc)
durandn
parents:
diff changeset
     6
      <dd><span class="badge">{{ annotation.stats.views_count }}</span></dd>
49b3f22948d5 work on stats: calculatestats command for manage.py, stats in item page, stats in annotations list, stats in annotation page, actions increment stats (view count, annotations count, comment count etc)
durandn
parents:
diff changeset
     7
      <dt>Commentaires:</dt>
49b3f22948d5 work on stats: calculatestats command for manage.py, stats in item page, stats in annotations list, stats in annotation page, actions increment stats (view count, annotations count, comment count etc)
durandn
parents:
diff changeset
     8
      <dd><span class="badge">{{ annotation.stats.comments_count }}</span></dd>
49b3f22948d5 work on stats: calculatestats command for manage.py, stats in item page, stats in annotations list, stats in annotation page, actions increment stats (view count, annotations count, comment count etc)
durandn
parents:
diff changeset
     9
      <dt>Révisions soumises:</dt>
49b3f22948d5 work on stats: calculatestats command for manage.py, stats in item page, stats in annotations list, stats in annotation page, actions increment stats (view count, annotations count, comment count etc)
durandn
parents:
diff changeset
    10
      <dd><span class="badge">{{ annotation.stats.submitted_revisions_count }}</span></dd>
49b3f22948d5 work on stats: calculatestats command for manage.py, stats in item page, stats in annotations list, stats in annotation page, actions increment stats (view count, annotations count, comment count etc)
durandn
parents:
diff changeset
    11
      <dt>Révisions acceptées:</dt>
49b3f22948d5 work on stats: calculatestats command for manage.py, stats in item page, stats in annotations list, stats in annotation page, actions increment stats (view count, annotations count, comment count etc)
durandn
parents:
diff changeset
    12
      <dd><span class="badge">{{ annotation.stats.accepted_revisions_count }}</span></dd>
49b3f22948d5 work on stats: calculatestats command for manage.py, stats in item page, stats in annotations list, stats in annotation page, actions increment stats (view count, annotations count, comment count etc)
durandn
parents:
diff changeset
    13
      <dt>Nombre de tags:</dt>
49b3f22948d5 work on stats: calculatestats command for manage.py, stats in item page, stats in annotations list, stats in annotation page, actions increment stats (view count, annotations count, comment count etc)
durandn
parents:
diff changeset
    14
      <dd><span class="badge">{{ annotation.stats.tag_count }}</span></dd>
49b3f22948d5 work on stats: calculatestats command for manage.py, stats in item page, stats in annotations list, stats in annotation page, actions increment stats (view count, annotations count, comment count etc)
durandn
parents:
diff changeset
    15
    </dl>
49b3f22948d5 work on stats: calculatestats command for manage.py, stats in item page, stats in annotations list, stats in annotation page, actions increment stats (view count, annotations count, comment count etc)
durandn
parents:
diff changeset
    16
  </div>
49b3f22948d5 work on stats: calculatestats command for manage.py, stats in item page, stats in annotations list, stats in annotation page, actions increment stats (view count, annotations count, comment count etc)
durandn
parents:
diff changeset
    17
</div>