1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-25 14:50:29 +00:00
Files
seahub/templates/snippets/pubinfo.html

10 lines
1.0 KiB
HTML
Raw Normal View History

2013-02-21 19:59:58 +08:00
{% load i18n %}
<div class="info-item">
<h3 class="info-item-top">{% trans "Organization Info"%}</h3>
<ul class="info-item-bottom">
2013-03-04 18:09:59 +08: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%}
2013-04-17 17:51:28 +08:00
<li class="pubinfo-item"><span class="amount">{{ groups_count }}</span><br />{% blocktrans count counter=groups_count %}<span class="obj">Group{% plural %}<span class="obj">Groups{% endblocktrans %}</span></li> {% comment %}Same reason as above.{% endcomment %}
2013-03-04 18:09:59 +08:00
<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 19:59:58 +08:00
</ul>
</div>