1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-18 06:57:52 +00:00
seahub/templates/snippets/pubinfo.html

10 lines
967 B
HTML
Raw Normal View History

2013-02-21 11:59:58 +00:00
{% load i18n %}
<div class="info-item">
<h3 class="info-item-top">{% trans "Organization Info"%}</h3>
<ul class="info-item-bottom">
2013-03-04 10:09:59 +00:00
<li class="pubinfo-item"><span class="amount">{{ pubrepos_count }}</span><br />{% blocktrans count counter=pubrepos_count %}<span class="obj">Library{% plural %}<span class="obj">Libraries{% endblocktrans %}</span></li> {% comment %}The reason including span tag to translation is that "Library" is already translated in other place, we need another unique string to mark this. {% endcomment%}
<li class="pubinfo-item"><span class="amount">{{ groups_count }}</span><br /><span class="obj">{% blocktrans count counter=groups_count %}Group{% plural %}Groups{% endblocktrans %}</span></li>
<li class="pubinfo-item"><span class="amount">{{ emailusers_count}}</span><br /><span class="obj">{% blocktrans count counter=emailusers_count %}User{% plural %}Users{% endblocktrans %}</span></li>
2013-02-21 11:59:58 +00:00
</ul>
</div>