HEX
Server: LiteSpeed
System: Linux server44.twelveinks.com 5.14.0-570.12.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 13 06:11:55 EDT 2025 x86_64
User: moda (1338)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /python/moda/public_html/tech/old/modules/addons/project_management/templates/clienthome.tpl
{include file="$template/includes/tablelist.tpl" tableName="ProjectsList"}

<div class="table-container clearfix">
    <table id="tableProjectsList" class="table table-list">
        <thead>
            <tr>
                <th>{$_lang.title}</th>
                <th>{$_lang.created}</th>
                <th>{$_lang.duedate}</th>
                <th>{$_lang.status}</th>
                <th>{$_lang.lastmodified}</th>
            </tr>
        </thead>
        <tbody>
            {foreach $projects as $project}
                <tr onclick="window.location='?m=project_management&a=view&id={$project.id}'">
                    <td><strong>{$project.title}</strong></td>
                    <td><span class="hidden">{$project.normalisedCreated}</span>{$project.created}</td>
                    <td><span class="hidden">{$project.normalisedDueDate}</span>{$project.duedate}</td>
                    <td><span class="label status status-{$project.status|strtolower|replace:' ':''}">{$project.status}</span></td>
                    <td><span class="hidden">{$project.normalisedLastModified}</span>{$project.lastmodified}</td>
                </tr>
            {/foreach}
        </tbody>
    </table>
</div>