0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
tikiwiki
/
3.2.0-5
/
standard
/
htdocs
/
templates
/
[
Home
]
File: tiki-user_tasks_list.tpl
{*Smarty template*} {* start ************ Task list ***************} <form action="tiki-user_tasks.php" method="post"> <table class="normal"> <tr> <td colspan="6" class="normal"> <div align="right"> {tr}Tasks per page{/tr} <select name="tasks_maxRecords"> <option value="-1" {if $prefs.tasks_maxRecords eq -1} selected="selected"{/if}>{tr}All{/tr}</option> <option value="2" {if $prefs.tasks_maxRecords eq 2} selected="selected"{/if}>2</option> <option value="5" {if $prefs.tasks_maxRecords eq 5} selected="selected"{/if}>5</option> <option value="10" {if $prefs.tasks_maxRecords eq 10} selected="selected"{/if}>10</option> <option value="20" {if $prefs.tasks_maxRecords eq 20} selected="selected"{/if}>20</option> <option value="30" {if $prefs.tasks_maxRecords eq 30} selected="selected"{/if}>30</option> <option value="40" {if $prefs.tasks_maxRecords eq 40} selected="selected"{/if}>40</option> <option value="50" {if $prefs.tasks_maxRecords eq 50} selected="selected"{/if}>50</option> </select> </div> </td> </tr> <tr> <th style="text-align:right;" > </th> <th><a href="tiki-user_tasks.php?offset={$offset}&sort_mode={if $sort_mode eq 'title_desc'}title_asc{else}title_desc{/if}">{tr}Title{/tr}</a></th> <th><a href="tiki-user_tasks.php?offset={$offset}&sort_mode={if $sort_mode eq 'start_desc'}start_asc{else}start_desc{/if}">{tr}Start{/tr}</a></th> <th><a href="tiki-user_tasks.php?offset={$offset}&sort_mode={if $sort_mode eq 'end_desc'}end_asc{else}end_desc{/if}">{tr}End{/tr}</a></th> <th style="text-align:right;"><a href="tiki-user_tasks.php?offset={$offset}&sort_mode={if $sort_mode eq 'priority_desc'}priority_asc{else}priority_desc{/if}">{tr}Priority{/tr}</a></th> <th style="text-align:right;"><a href="tiki-user_tasks.php?offset={$offset}&sort_mode={if $sort_mode eq 'percentage_desc'}percentage_asc{else}percentage_desc{/if}">{tr}Completed{/tr}</a></th> </tr> {cycle values="odd,even" print=false} {section name=task_i loop=$tasklist} <tr> <td class="prio{$tasklist[task_i].priority}"> <input {if $tasklist[task_i].disabled} disabled = "disabled" {/if} type="checkbox" name="task[{$tasklist[task_i].taskId}]" /> {if $tasklist[task_i].deleted} {if $tasklist[task_i].creator ne $user} <img src='img/icons2/delete_all.gif' width='16' height='16' alt='{tr}Delete{/tr}' /> {else} <img src='img/icons/trash.gif' width='16' height='16' alt='{tr}Trash{/tr}' /> {/if} {/if} {if (($tasklist[task_i].creator eq $tasklist[task_i].user) and ($tasklist[task_i].user eq $user)) } {*private task*} {else} {if ($tasklist[task_i].user eq $user) } {*recived task*} {icon _id='task_received' align="middle"} {if (($tasklist[task_i].accepted_creator eq 'n') or ($tasklist[task_i].accepted_user eq 'n')) } <img src="{$img_not_accepted}" height="{$img_not_accepted_height}" width="{$img_not_accepted_width}" title='{tr}Not Accepted by One User{/tr}' alt='{tr}Not Accepted User{/tr}' /> {else} {if ($tasklist[task_i].accepted_user eq '')} <img src="{$img_me_waiting}" height="{$img_me_waiting_height}" width="{$img_me_waiting_width}" title='{tr}Waiting for Me{/tr}' alt='{tr}Waiting for Me{/tr}' /> {else} {if ($tasklist[task_i].accepted_creator eq 'y')} <img src="{$img_accepted}" height="{$img_accepted_height}" width="{$img_accepted_width}" title='{tr}Accepted by Task User and Creator{/tr}' alt='{tr}Accepted User and Creator{/tr}' /> {else} <img src="{$img_he_waiting}" height="{$img_he_waiting_height}" width="{$img_he_waiting_width}"alt='{tr}Waiting for Other User{/tr}' title='{tr}Waiting for Other User{/tr}' /> {/if} {/if} {/if} {elseif ($tasklist[task_i].creator eq $user) } {*submitted task*} {icon _id='task_submitted' align="middle"} {if (($tasklist[task_i].accepted_creator eq 'n') or ($tasklist[task_i].accepted_user eq 'n')) } <img src="{$img_not_accepted}" height="{$img_not_accepted_height}" width="{$img_not_accepted_width}" title='{tr}Not Accepted by One User{/tr}' alt='{tr}Not Accepted User{/tr}' /> {else} {if ($tasklist[task_i].accepted_user eq '')} {if ($tasklist[task_i].accepted_creator eq 'y')} <img src="{$img_he_waiting}" height="{$img_he_waiting_height}" width="{$img_he_waiting_width}" alt='{tr}Waiting for Other User{/tr}' title='{tr}Waiting for Other User{/tr}' /> {else} <img src="{$img_me_waiting}" height="{$img_me_waiting_height}" width="{$img_me_waiting_width}" title='{tr}Waiting for Me{/tr}' alt='{tr}Waiting for Me{/tr}' /> {/if} {else} {if ($tasklist[task_i].accepted_creator eq 'y')} <img src="{$img_accepted}" height="{$img_accepted_height}" width="{$img_accepted_width}" title='{tr}Accepted by Task User and Creator{/tr}' alt='{tr}Accepted User and Creator{/tr}' /> {else} <img src="{$img_me_waiting}" height="{$img_me_waiting_height}" width="{$img_me_waiting_width}" title='{tr}Waiting for Me{/tr}' alt='{tr}Waiting for Me{/tr}' /> {/if} {/if} {/if} {else} {*shared task*} {icon _id='task_shared' align="middle"} {/if} {/if} </td> <td class="prio{$tasklist[task_i].priority}"> <a {if $tasklist[task_i].status eq 'c'}style="text-decoration:line-through;"{/if} class="link" href="tiki-user_tasks.php?taskId={$tasklist[task_i].taskId}&offset={$offset}&sort_mode={$sort_mode}&tiki_view_mode=view&find={$find}">{$tasklist[task_i].title}</a></td> <td {if $tasklist[task_i].status eq 'c'}style="text-decoration:line-through;"{/if} class="prio{$tasklist[task_i].priority}"><div class="mini">{$tasklist[task_i].start|date_format:"{tr}%m/%d/%Y [%H:%M]{/tr}"}</div></td> <td {if $tasklist[task_i].status eq 'c'}style="text-decoration:line-through;"{/if} class="prio{$tasklist[task_i].priority}"><div class="mini">{$tasklist[task_i].end|date_format:"{tr}%m/%d/%Y [%H:%M]{/tr}"}</div></td> <td style="text-align:right;{if $tasklist[task_i].status eq 'c'}text-decoration:line-through;{/if}" class="prio{$tasklist[task_i].priority}">{$tasklist[task_i].priority}</td> <td style="text-align:right;{if $tasklist[task_i].status eq 'c'}text-decoration:line-through;{/if}" class="prio{$tasklist[task_i].priority}"> <select {if $tasklist[task_i].disabled} disabled = "disabled" {/if} name="task_perc[{$tasklist[task_i].taskId}]"> <option value="w" {if $tasklist[task_i].percentage_null } selected = "selected" {/if}>{tr}Waiting{/tr}</option> {section name=zz loop=$percs} <option value="{$percs[zz]|escape}" {if $tasklist[task_i].percentage eq $percs[zz] and !$tasklist[task_i].percentage_null} selected = "selected" {/if} >{$percs[zz]}%</option> {/section} </select> </td> </tr> {sectionelse} <tr> <td class="odd" colspan="6">{tr}No tasks entered{/tr}</td> </tr> {/section} <tr> <td class="formcolor" colspan="3" style="text-align:left; vertical-align:bottom;"> <img src="img/icons2/arrow.gif" width="16" height="24" style="border:0" alt="arrow" /> <select name="action" style="vertical-align:bottom;"> <option value="" >{tr}Select One{/tr}</option> <option value="waiting_marked" >{tr}Waiting{/tr}</option> <option value="open_marked" >{tr}Open{/tr}</option> <option value="complete_marked" >{tr}Completed{/tr}</option> <option value="move_marked_to_trash">{tr}Trash{/tr}</option> <option value="remove_marked_from_trash">{tr}Undo Trash{/tr}</option> </select> <input type="submit" name="update_tasks" value="{tr}Go{/tr}" style="vertical-align:bottom;" /> </td> <td class="formcolor" colspan="3" style="text-align:right;"> <input type="submit" name="update_percentage" value="{tr}Go{/tr}" style="vertical-align:bottom;" /> <img src="img/icons2/arrow_fliped.gif" width="16" height="24" style="border:0" alt="arrow" /> </td> </tr> <tr> <td class="formcolor" colspan="6" style="text-align:center;"> {tr}Show:{/tr} <input name="show_private" {if $show_private} checked="checked" {/if} type="checkbox" />{tr}Private{/tr} {if $tiki_p_tasks_receive eq 'y'} <input name="show_received" {if $show_received} checked="checked" {/if} type="checkbox" />{tr}Received{/tr}{/if} {if $tiki_p_tasks_send eq 'y'} <input name="show_submitted" {if $show_submitted} checked="checked" {/if} type="checkbox" />{tr}Submitted{/tr}{/if} {if $tiki_p_tasks_receive eq 'y' or $tiki_p_tasks_send eq 'y'} <input name="show_shared" {if $show_shared} checked="checked" {/if} type="checkbox" />{tr}Shared{/tr}{/if} <input name="show_trash" {if $show_trash} checked="checked" {/if} type="checkbox" />{tr}Trash{/tr} <input name="show_completed" {if $show_completed} checked="checked" {/if} type="checkbox" />{tr}Completed{/tr} {if ($admin_mode)} <a class="highlight" > <input name="show_admin" {if $show_admin} checked="checked" {/if} type="checkbox" />{tr}All Shared Tasks{/tr}</a> {/if} </td> </tr> <tr> <td class="formcolor" colspan="6" style="text-align:center;"> <input type="submit" name="reload" value="{tr}Reload{/tr}" /> </td> </tr> </table> </form> {pagination_links cant=$cant step=$maxRecords offset=$offset}{/pagination_links} {* end ************ Task list ***************}