Merge branch 'master' of github.com:FinalsClub/karmaworld
[oweals/karmaworld.git] / karmaworld / templates / notes / note_list_entry.html
1 <div class="row notes_result_container wide">
2   <div class="twelve columns notes_result">
3
4     <div class="note_name">
5       <a href="{{ note.get_absolute_url }}" class="activity_target">{{ note.name }}</a>
6     </div>
7
8     <time datetime="{{ note.uploaded_at }}">
9       {{ note.uploaded_at|date:"l M d o" }}
10     </time>
11
12     {% if note.tags.count > 0 %}
13     <div class="activity_details_context">
14       Tags:
15         {% for tag in note.tags.all %}
16           {{ tag.name }}
17           {% if not forloop.last %}, {% endif %}
18         {% endfor %}
19     </div>
20     {% endif %}
21
22
23     <div class="note_preview">
24       {{ note.text|slice:":500" }} &hellip;
25     </div>
26
27
28   </div><!-- /notes_result -->
29 </div><!-- /notes_result_container -->
30
31 <hr class=midrule>