36 lines
1.1 KiB
Smarty
36 lines
1.1 KiB
Smarty
{**
|
|
* templates/controllers/grid/tasks/task.tpl
|
|
*
|
|
* Copyright (c) 2014-2021 Simon Fraser University
|
|
* Copyright (c) 2003-2021 John Willinsky
|
|
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
|
|
*
|
|
* @brief A single task appearing in the task grid
|
|
*
|
|
* @uses $notificationMgr NotificationManager
|
|
* @uses $notification Notification The notification object
|
|
* @uses $context Journal|Press The journal or press which this notification
|
|
* comes from.
|
|
* @uses $notificationObjectTitle string The title of the object this
|
|
* notification is about.
|
|
* @uses $message string The message of the notification
|
|
* @uses $isMultiContext bool Do we have multiple contexts?
|
|
*}
|
|
<div class="task{if !$notification->getDateRead()} unread{/if}">
|
|
<span class="message">
|
|
{$message}
|
|
</span>
|
|
<div class="details">
|
|
{if $isMultiContext}
|
|
<span class="acronym">
|
|
{$context->getLocalizedAcronym()|escape}
|
|
</span>
|
|
{/if}
|
|
{if $notificationObjectTitle && $notificationObjectTitle !== '—'}
|
|
<span class="submission">
|
|
{$notificationObjectTitle|escape}
|
|
</span>
|
|
{/if}
|
|
</div>
|
|
</div>
|