|
106 | 106 | {% call macros.outer_form(csrf_token(), form, button_visible=False, manually_rendered=True) %} |
107 | 107 | {{ csrf_token() }} |
108 | 108 | <table class="portal-privmsg-table portal-privmsg-responsive-table table table-striped"> |
109 | | - <colgroup> |
110 | | - <col class="subjectcol"> |
111 | | - <col class="authorcol"> |
112 | | - <col class="recipientscol"> |
113 | | - <col class="datecol"> |
114 | | - <col class="actionscol"> |
115 | | - <col class="deletecol"> |
116 | | - </colgroup> |
117 | 109 | <thead> |
118 | 110 | <tr> |
119 | | - <th class="subject">{% trans %}Subject{% endtrans %}</th> |
120 | | - <th class="author">{% trans %}From{% endtrans %}</th> |
121 | | - <th class="recipients">{% trans %}To{% endtrans %}</th> |
122 | | - <th class="date">{% trans %}Date{% endtrans %}</th> |
123 | | - <th class="actions">{% trans %}Actions{% endtrans %}</th> |
124 | | - <th class="delete"><input id="private_message_mark_all"type="checkbox" ></th> |
| 111 | + <th>{% trans %}Subject{% endtrans %}</th> |
| 112 | + <th>{% trans %}From{% endtrans %}</th> |
| 113 | + <th>{% trans %}To{% endtrans %}</th> |
| 114 | + <th>{% trans %}Date{% endtrans %}</th> |
| 115 | + <th>{% trans %}Actions{% endtrans %}</th> |
| 116 | + <th><input id="private_message_mark_all"type="checkbox" ></th> |
125 | 117 | </tr> |
126 | 118 | </thead> |
127 | 119 | <tbody> |
128 | 120 | {% for entry in entries %} |
129 | | - <tr{% if message == entry.message %} class="active_pn"{% endif %}> |
| 121 | + <tr> |
130 | 122 | <td data-title="{% trans %}Subject{% endtrans %}"> |
131 | 123 | <a href="{{ entry|url }}" |
132 | 124 | {% if not entry.read %}class="private-message-unread"{% endif %} |
|
0 commit comments