Loading

Comments under task

You want to see a new feature?

Comments under task

Postby mlavta1 » 09.11.2009, 13:58

It would be nice, if users could comment under each task.
mlavta1
 
Posts: 4
Joined: 09.11.2009, 10:32

Re: Comments under task

Postby jadog » 26.11.2009, 02:51

Yes absolutely. Base camp works like that. We need to basically merge Tasks and Messages. So in messages you can see what tasks you left messages on and in the messages you could assign your message to a given task.
jadog
 
Posts: 7
Joined: 01.11.2009, 00:01

Re: Comments under task

Postby eugene » 03.12.2009, 12:11

I agree. I even think comments should be for every object - task, milestone, whatever
eugene
 
Posts: 3
Joined: 03.12.2009, 12:07

Re: Comments under task

Postby Philipp » 04.12.2009, 00:31

eugene wrote:I agree. I even think comments should be for every object - task, milestone, whatever

I agree. Now... it "only" needs to be implemented that way :lol: We'll see when that happens :) :?:
User avatar
Philipp
Site Admin
 
Posts: 969
Joined: 14.12.2007, 03:06
Location: Saarbrücken, germany

Re: Comments under task

Postby avychodil » 09.12.2009, 10:17

You can comment tasks in timetracker and show timetracker related items in task - that what I do. You can than easy control what who have done on which task and you can use it even for comments. If you wand to add view of timetracker items to the task you simply change these code:

Add these lines into managetask.php from line 350 (showtask - before template section)

Code: Select all
    $tracker = (object) new timetracker();
   
    $track = $tracker->getProjectTrack($id, 0, $task[ID]);
    echo($id);
        if (!empty($track))
     {
     echo("jsem vevnitř");
        $totaltime = $tracker->getTotalTrackTime($track);
        $template->assign("totaltime", $totaltime);
     }
    $template->assign("tracker", $track);



into task.tpl add these lines after the task section

Code: Select all
<div class="timetrack">

<div class="infowin_left" style = "display:none;" id = "systemmsg">
{if $mode == "added"}
<span class="info_in_green"><img src="templates/standard/images/symbols/timetracker.png" alt=""/>{#timetracker#} {#was#} {#added#}</span>
{elseif $mode == "edited"}
<span class="info_in_yellow"><img src="templates/standard/images/symbols/timetracker.png" alt=""/>{#timetracker#} {#was#} {#edited#}</span>
{elseif $mode == "deleted"}
<span class="info_in_red"><img src="templates/standard/images/symbols/timetracker.png" alt=""/>{#timetracker#} {#was#} {#deleted#}</span>
{/if}
</div>
{literal}
<script type = "text/javascript">
systemMsg('systemmsg');
</script>
{/literal}


<div class="headline">
<a href="javascript:void(0);" id="acc-tracker_toggle" class="win_block" onclick = "toggleBlock('acc-tracker');"></a>

<h2>
<img src="./templates/standard/images/symbols/timetracker.png" alt="" />{#report#}
</h2>
</div>

<div class="block" id="acc-tracker">

<div class="nosmooth" id="sm_report">
<table cellpadding="0" cellspacing="0" border="0">


<thead>
<tr>
<th class="a"></th>
<th class="b">{#user#}</th>
<th class="cf">{#day#}</th>
<th class="cf">{#started#}</th>
<th class="cf">{#ended#}</th>
<th class="e">{#hours#}</th>
<th class="tools"></th>
</tr>
</thead>

<tfoot>
<tr>
<td colspan="6"></td>
</tr>
</tfoot>

{section name = track loop=$tracker}

{*Color-Mix*}
{if $smarty.section.track.index % 2 == 0}
<tbody class="color-a" id="track_{$tracker[track].ID}">
{else}
<tbody class="color-b" id="track_{$tracker[track].ID}">
{/if}
<tr>
<td></td>
<td>
<div class="toggle-in">
<span class="acc-toggle" onclick="javascript:accord_tracker.activate($$('#acc-tracker .accordion_toggle')[{$smarty.section.track.index}]);toggleAccordeon('acc-tracker',this);"></span>
<a href = "manageuser.php?action=profile&amp;id={$tracker[track].user}" title="{$tracker[track].pname}">
{$tracker[track].uname|truncate:30:"...":true}
</a>
</div>
</td>
<td>{$tracker[track].daystring|truncate:12:"...":true}</td>
<td>{$tracker[track].startstring|truncate:12:"...":true}</td>
<td>{$tracker[track].endstring|truncate:12:"...":true}</td>
<td>{$tracker[track].hours|truncate:12:"...":true}</td>
<td class="tools">
{if $userpermissions.timetracker.edit}
<a class="tool_edit" href="managetimetracker.php?action=editform&amp;tid={$tracker[track].ID}&amp;id={$project.ID}" title="{#edit#}"></a>
{/if}
{if $userpermissions.timetracker.del}
<a class="tool_del" href="javascript:confirmfunction('{#confirmdel#}','deleteElement(\'track_{$tracker[track].ID}\',\'managetimetracker.php?action=del&amp;tid={$tracker[track].ID}&amp;id={$project.ID}\')');"  title="{#delete#}"></a>
{/if}
</td>
</tr>

<tr class="acc">
<td colspan="7">
<div class="accordion_toggle"></div>
<div class="accordion_content">
<div class="acc-in">

{if $tracker[track].comment != ""}
<strong>{#comment#}:</strong><br />{$tracker[track].comment}
{/if}

</div>
</div>
</td>
</tr>
</tbody>
{/section}

<tbody class="tableend">
<tr>
<td></td>
<td colspan="4"><strong>{#totalhours#}:</strong></td>
<td><strong>{$totaltime}</strong></td>
<td class="tools"></td>
</tr>
</tbody>
</table>
</div> {*smooth End*}


</div> {*block END*}
{paginate_prev} {paginate_middle} {paginate_next}

<div class="content-spacer"></div>
{literal}
<script type = "text/javascript">
var accord_tracker = new accordion('acc-tracker');
</script>
{/literal}

</div> {*timetrack END*}

<br>
avychodil
 
Posts: 13
Joined: 07.07.2009, 22:47

Re: Comments under task

Postby joho » 03.12.2010, 12:45

eugene wrote:I agree. I even think comments should be for every object - task, milestone, whatever


+1

What's the status on implementing proper comments on "every" type of object?



-joho
-joho

_
| At the end of a smile, there's a laugh and a 1/2 [DAD]
User avatar
joho
 
Posts: 8
Joined: 26.11.2010, 13:58
Location: Stockholm, Sweden

Re: Comments under task

Postby Madddin » 17.12.2010, 11:14

+1

would be a great feature!
Madddin
 
Posts: 29
Joined: 11.05.2010, 11:56

Re: Comments under task

Postby Eva » 17.12.2010, 12:59

This will come in the near future. :)
User avatar
Eva
 
Posts: 833
Joined: 01.01.2008, 23:31
Location: Saarbrücken, Germany

Re: Comments under task

Postby fuzzy76 » 28.02.2011, 13:45

Just hope this release is coming soon :)
fuzzy76
 
Posts: 10
Joined: 24.02.2011, 15:05

Re: Comments under task

Postby fuzzy76 » 28.04.2011, 11:13

From what I've heard, v0.7 doesn't seem to have this feature?
fuzzy76
 
Posts: 10
Joined: 24.02.2011, 15:05

Next

Return to Feature Requests

Who is online

Users browsing this forum: Galleyarerb, Google [Bot]

cron