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.

staffpm-list.twig 997B

123456789101112131415161718192021222324252627
  1. {% for pm in list %}
  2. {% if loop.first %}
  3. <div class="box" id="staffpms_box">
  4. <div class="head">
  5. Staff PMs <a href="#" onclick="$('#staffpms').gtoggle(); return false;" class="brackets">View</a>
  6. </div>
  7. <table width="100%" class="message_table hidden" id="staffpms">
  8. <tr class="colhead">
  9. <td>Subject</td>
  10. <td>Date</td>
  11. <td>Assigned to</td>
  12. <td>Replies</td>
  13. <td>Resolved by</td>
  14. </tr>
  15. {% endif %}
  16. <tr>
  17. <td><a href="staffpm.php?action=viewconv&amp;id={{ pm.id }}">{{ pm.subject }}</a></td>
  18. <td>{{ pm.date|time_diff(2) }}</td>
  19. <td>{% if assigned_to_user %}{{ pm.user_id|user_url }}{% else %}{{ pm.reader }}{% endif %}</td>
  20. <td>{{ pm.replies }}</td>
  21. <td>{% if pm.resolver_id %}{{ pm.resolver_id|user_url }}{% else %}(unresolved){% endif %}</td>
  22. </tr>
  23. {% if loop.last %}
  24. </table>
  25. </div>
  26. {% endif %}
  27. {% endfor %}