Commit d253b686 authored by Jean-Paul Smets's avatar Jean-Paul Smets

added priority info in list


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@361 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 0e84bcb2
...@@ -167,6 +167,7 @@ class SQLDict(RAMDict): ...@@ -167,6 +167,7 @@ class SQLDict(RAMDict):
for line in result: for line in result:
m = self.loadMessage(line.message) m = self.loadMessage(line.message)
m.processing_node = line.processing_node m.processing_node = line.processing_node
m.priority = line.priority
message_list.append(m) message_list.append(m)
return message_list return message_list
......
...@@ -38,6 +38,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ...@@ -38,6 +38,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
<th align="left" valign="top">Arguments</th> <th align="left" valign="top">Arguments</th>
<th align="left" valign="top">Named Parameters</th> <th align="left" valign="top">Named Parameters</th>
<th align="left" valign="top">Processing Node</th> <th align="left" valign="top">Processing Node</th>
<th align="left" valign="top">Priority</th>
</tr> </tr>
<dtml-in getMessageList> <dtml-in getMessageList>
<tr> <tr>
...@@ -47,6 +48,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ...@@ -47,6 +48,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
<td align="left" valign="top"><dtml-var "','.join(args)"></td> <td align="left" valign="top"><dtml-var "','.join(args)"></td>
<td align="left" valign="top"><dtml-var "_.str(kw)[1:-1]"></td> <td align="left" valign="top"><dtml-var "_.str(kw)[1:-1]"></td>
<td align="left" valign="top"><dtml-var processing_node></td> <td align="left" valign="top"><dtml-var processing_node></td>
<td align="left" valign="top"><dtml-var priority></td>
</tr> </tr>
</dtml-in> </dtml-in>
</table> </table>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment