This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/templates/badges/index.js.handlebars
2014-06-19 16:56:19 +05:30

16 lines
402 B
Handlebars

<div class='container badges'>
<h1>{{i18n badges.title}}</h1>
<table class='badges-listing'>
<tbody>
{{#each}}
<tr>
<td class='badge'>{{user-badge badge=this}}</td>
<td class='description'>{{displayDescription}}</td>
<td class='grant-count'>{{i18n badges.granted count=grant_count}}</td>
</tr>
{{/each}}
</tbody>
</table>
</div>