%PDF-1.7 GIF89;
| Server IP : 104.20.45.2 / Your IP : 172.16.20.3 Web Server : Apache/2.4.25 (Debian) System : Linux f64a392e70de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : application ( 1000) PHP Version : 5.6.40 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /app/templates/admin/ |
Upload File : |
{**
* templates/admin/journals.tpl
*
* Copyright (c) 2013-2019 Simon Fraser University
* Copyright (c) 2003-2019 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* Display list of journals in site administration.
*
*}
{strip}
{assign var="pageTitle" value="journal.journals"}
{include file="common/header.tpl"}
{/strip}
<script type="text/javascript">
{literal}
$(document).ready(function() { setupTableDND("#adminJournals", "moveJournal"); });
{/literal}
</script>
<br />
<div id="journals">
<table width="100%" class="listing" id="adminJournals">
<tr>
<td colspan="4" class="headseparator"> </td>
</tr>
<tr valign="top" class="heading">
<td width="35%">{translate key="manager.setup.journalTitle"}</td>
<td width="35%">{translate key="journal.path"}</td>
<td width="10%">{translate key="common.order"}</td>
<td width="20%" align="right">{translate key="common.action"}</td>
</tr>
<tr>
<td colspan="4" class="headseparator"> </td>
</tr>
{iterate from=journals item=journal}
<tr valign="top" id="journal-{$journal->getId()}" class="data">
<td><a class="action" href="{url journal=$journal->getPath() page="manager"}">{$journal->getLocalizedTitle()|escape}</a></td>
<td class="drag">{$journal->getPath()|escape}</td>
<td><a href="{url op="moveJournal" d=u id=$journal->getId()}">↑</a> <a href="{url op="moveJournal" d=d id=$journal->getId()}">↓</a></td>
<td align="right"><a href="{url op="editJournal" path=$journal->getId()}" class="action">{translate key="common.edit"}</a> | <a class="action" href="{url op="deleteJournal" path=$journal->getId()}" onclick="return confirm('{translate|escape:"jsparam" key="admin.journals.confirmDelete"}')">{translate key="common.delete"}</a></td>
</tr>
{/iterate}
{if $journals->wasEmpty()}
<tr>
<td colspan="4" class="nodata">{translate key="admin.journals.noneCreated"}</td>
</tr>
<tr>
<td colspan="4" class="endseparator"> </td>
</tr>
{else}
<tr>
<td colspan="4" class="endseparator"> </td>
</tr>
<tr>
<td colspan="2" align="left">{page_info iterator=$journals}</td>
<td colspan="2" align="right">{page_links anchor="journals" name="journals" iterator=$journals}</td>
</tr>
{/if}
</table>
</div>
<p><a href="{url op="createJournal"}" class="action">{translate key="admin.journals.create"}</a></p>
{include file="common/footer.tpl"}