BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

quote-notification.twig 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <div class="thin">
  2. <div class="header">
  3. <h2>
  4. <a href="user.php?id={{ user.id }}">{{ user.username }}</a> &rsaquo; Quote notifications
  5. {% if total and not show_all %} ({{ total }} new){% endif %}
  6. </h2>
  7. <div class="linkbox pager">
  8. <br />
  9. {% if show_all %}
  10. <a href="userhistory.php?action=quote_notifications" class="brackets">Show unread quotes</a>&nbsp;
  11. {% else %}
  12. <a href="userhistory.php?action=quote_notifications&amp;showall=1" class="brackets">Show all quotes</a>&nbsp;
  13. {% endif %}
  14. <a href="userhistory.php?action=subscriptions" class="brackets">Show subscriptions</a>&nbsp;
  15. <a href="userhistory.php?action=quote_notifications&amp;catchup=1" class="brackets">Catch up</a>&nbsp;
  16. <br /><br />
  17. </div>
  18. {{ paginator.linkbox|raw }}
  19. {% if not total %}
  20. <div class="center">No{% if not show_all %} new{% endif %} quotes.</div>
  21. {% endif %}
  22. <br />
  23. {% for quote in page %}
  24. <table class="forum_post box vertical_margin noavatar">
  25. <tr class="colhead_dark notify_{{ quote.page }}">
  26. <td colspan="2">
  27. <span style="float: left;">{{ quote.title }}: {{ quote.link|raw }}
  28. &rsaquo; Quoted by {{ quote.quoter_id|user_url }} {{ quote.date|time_diff }}
  29. {% if quote.unread %} <span class="new">(New!)</span>{% endif %}
  30. </span>
  31. <span style="float: left;" class="tooltip last_read" title="Jump to quote"> <a href="{{ quote.jump|raw }}"></a></span>
  32. <span style="float: right;"><a href="#">&uarr;</a></span>
  33. </td>
  34. </tr>
  35. </table>
  36. {% endfor %}
  37. {{ paginator.linkbox|raw }}
  38. </div>