_row.html 851 B

12345678910111213
  1. {% load humanize %}
  2. {% load naturalduration %}
  3. <tr {% if scrobble.in_progress %}class="in-progress"{% endif %}>
  4. <td>{% if scrobble.in_progress %}{{scrobble.media_obj.strings.verb}} now | <a class="right" href="{% url "scrobbles:finish" scrobble.uuid %}">Finish</a>{% else %}{{scrobble.timestamp|naturaltime}}{% endif %}</td>
  5. <td>
  6. {% if scrobble.media_type == "Task" %}
  7. <p><em><a href="{{scrobble.media_obj.get_absolute_url}}">{{scrobble.media_obj.title|truncatechars_html:45}} - {% if scrobble.logdata %}{% if scrobble.logdata.description %}{{scrobble.logdata.description}}{% endif %}{% endif %}</a></em></p>
  8. {% else %}
  9. <a href="{{scrobble.media_obj.get_absolute_url}}">{{scrobble.media_obj|truncatechars_html:45}}</a>
  10. {% endif %}
  11. </td>
  12. <td>{{scrobble.elapsed_time|natural_duration}}</td>
  13. </tr>