%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/about/ |
Upload File : |
{**
* templates/about/statistics.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.
*
* Subtemplate defining the statistics table.
*
*}
{strip}
{assign var="pageTitle" value="about.statistics"}
{include file="common/header.tpl"}
{/strip}
{* WARNING: This page should be kept roughly synchronized with the
implementation of the Journal Manager's statistics page. *}
<div id="statistics">
<table width="100%" class="data">
<tr valign="top">
<td width="25%" class="label"><h4>{translate key="common.year"}</h4></td>
<td width="75%" colspan="2" class="value">
{strip}
<h4>
{if $statisticsYear > $firstYear}
<a class="action" href="{url statisticsYear=$statisticsYear-1}">{translate key="navigation.previousPage"}</a>
{/if}
{$statisticsYear|escape}
{if $statisticsYear < $lastYear}
<a class="action" href="{url statisticsYear=$statisticsYear+1}">{translate key="navigation.nextPage"}</a>
{/if}
</h4>
{/strip}
</td>
</tr>
{if $statNumPublishedIssues}<tr valign="top">
<td class="label">{translate key="manager.statistics.statistics.numIssues"}</td>
<td colspan="2" class="value">{$issueStatistics.numPublishedIssues}</td>
</tr>{/if}
{if $statItemsPublished}<tr valign="top">
<td width="20%" class="label">{translate key="manager.statistics.statistics.itemsPublished"}</td>
<td width="80%" colspan="2" class="value">{$articleStatistics.numPublishedSubmissions}</td>
</tr>{/if}
{if $statNumSubmissions}<tr valign="top">
<td width="20%" class="label">{translate key="manager.statistics.statistics.numSubmissions"}</td>
<td width="80%" colspan="2" class="value">{$articleStatistics.numSubmissions}</td>
</tr>{/if}
{if $statPeerReviewed}<tr valign="top">
<td width="20%" class="label">{translate key="manager.statistics.statistics.peerReviewed"}</td>
<td width="80%" colspan="2" class="value">{$limitedArticleStatistics.numReviewedSubmissions}</td>
</tr>{/if}
{if $statCountAccept}<tr valign="top">
<td width="20%" class="label"> {translate key="manager.statistics.statistics.count.accept"}</td>
<td width="80%" colspan="2" class="value">{translate key="manager.statistics.statistics.count.value" count=$limitedArticleStatistics.submissionsAccept percentage=$limitedArticleStatistics.submissionsAcceptPercent}</td>
</tr>{/if}
{if $statCountDecline}<tr valign="top">
<td width="20%" class="label"> {translate key="manager.statistics.statistics.count.decline"}</td>
<td width="80%" colspan="2" class="value">{translate key="manager.statistics.statistics.count.value" count=$limitedArticleStatistics.submissionsDecline percentage=$limitedArticleStatistics.submissionsDeclinePercent}</td>
</tr>{/if}
{if $statDaysPerReview}<tr valign="top">
<td width="20%" class="label"> {translate key="manager.statistics.statistics.daysPerReview"}</td>
<td colspan="2" class="value">
{assign var=daysPerReview value=$reviewerStatistics.daysPerReview}
{math equation="round($daysPerReview)"}
</td>
</tr>{/if}
{if $statDaysToPublication}<tr valign="top">
<td width="20%" class="label"> {translate key="manager.statistics.statistics.daysToPublication"}</td>
<td colspan="2" class="value">{$limitedArticleStatistics.daysToPublication}</td>
</tr>{/if}
{if $statRegisteredUsers}<tr valign="top">
<td width="20%" class="label">{translate key="manager.statistics.statistics.registeredUsers"}</td>
<td colspan="2" class="value">{translate key="manager.statistics.statistics.totalNewValue" numTotal=$allUserStatistics.totalUsersCount numNew=$userStatistics.totalUsersCount}</td>
</tr>{/if}
{if $statRegisteredReaders}<tr valign="top">
<td width="20%" class="label">{translate key="manager.statistics.statistics.registeredReaders"}</td>
<td colspan="2" class="value">{translate key="manager.statistics.statistics.totalNewValue" numTotal=$allUserStatistics.reader|default:"0" numNew=$userStatistics.reader|default:"0"}</td>
</tr>{/if}
{if $currentJournal->getSetting('publishingMode') == $smarty.const.PUBLISHING_MODE_SUBSCRIPTION && $statSubscriptions}
<tr valign="top">
<td colspan="3" class="label">{translate key="manager.statistics.statistics.subscriptions"}</td>
</tr>
{foreach from=$allSubscriptionStatistics key=type_id item=stats}
<tr valign="top">
<td width="20%" class="label"> {$stats.name}:</td>
<td colspan="2" class="value">{translate key="manager.statistics.statistics.totalNewValue" numTotal=$stats.count|default:"0" numNew=$subscriptionStatistics.$type_id.count|default:"0"}</td>
</tr>
{/foreach}
{/if}
</table>
</div>
{include file="common/footer.tpl"}