sfsolutions Posted May 9, 2011 Share Posted May 9, 2011 Hi, how can i create todo items that only i can see, and not anyone else ? Best wishes and many thanks Niels 0 Quote Link to comment Share on other sites More sharing options...
othellotech Posted May 9, 2011 Share Posted May 9, 2011 paste them into your "notes" field on the admin homepage 0 Quote Link to comment Share on other sites More sharing options...
sfsolutions Posted May 10, 2011 Author Share Posted May 10, 2011 Hi, thanks for the idea. But it would be great that every agent has its todos. E.g. when i give work to person a, it should not bother person "b". same when i give work to person "c". That should not be visible for "a" and "b" Best wishes Niels 0 Quote Link to comment Share on other sites More sharing options...
Nathanael Posted May 10, 2011 Share Posted May 10, 2011 The only way is to edit your homepage.tpl field in your admin template but you need php knowledge. <table width=100% cellspacing=1 bgcolor="#cccccc"> <tr bgcolor=#efefef style="text-align:center;font-weight:bold;"><td>{$_ADMINLANG.fields.date}</td><td>{$_ADMINLANG.fields.title}</td><td>{$_ADMINLANG.fields.description}</td><td>{$_ADMINLANG.fields.duedate}</td><td>{$_ADMINLANG.fields.status}</td><td width="20"></td></tr> {foreach key=num from=$todoitems item=todoitem} <tr bgcolor="{$todoitem.bgcolor}"><td align=center>{$todoitem.date}</td><td align=center>{$todoitem.title}</td><td>{$todoitem.description|truncate:80:"..."}</td><td align=center>{$todoitem.duedate}</td><td align=center>{$todoitem.status}</td><td><a href="todolist.php?action=edit&id={$todoitem.id}"><img src="images/edit.gif" border="0"></a></td></tr> {foreachelse} <tr bgcolor="#ffffff"><td align="center" colspan="6">{$_ADMINLANG.global.norecordsfound}</td></tr> {/foreach} </table> 0 Quote Link to comment Share on other sites More sharing options...
othellotech Posted May 11, 2011 Share Posted May 11, 2011 however that doesn't stop them all from seeing the to-do items under "utilities, to-do" currently that art of the admin section is not templated, so what the OP is asking isnt possible 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.