Guys, I wanted to put the TIME in crm_detail_list and
crm_details.
I see line 22 of contact_crm_details.tpl is:
<td class="tab">{$td.contact_date|mgw_date}</td>
I assume $td.contact_date has both date and time, right?
So I would like something like:
<td
class="tab">{$td.contact_date|mgw_date}-{$td.contact_date|mgw_time}</td>
But I guess there is no "mgw_time"... (?)
How can I print the time?
Thanks.
Alroger
Logged In: YES
user_id=105527
mgw_time and mgw_datetime should both be usable.
Logged In: YES
user_id=742056
I've tried both
<td
class="tab">{$td.contact_date|mgw_date}-{$td.contact_date|mgw_datetime}</td>
and
<td
class="tab">{$td.contact_date|mgw_date}-{$td.contact_date|mgw_time}</td>
And the time comes out as 00:00:00, always.
Any other idea?
Logged In: YES
user_id=1312539
This Tracker item was closed automatically by the system. It was
previously set to a Pending status, and the original submitter
did not respond within 14 days (the time period specified by
the administrator of this Tracker).
Logged In: YES
user_id=742056
K-Fish, any ideas? What am I doing wrong?