%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/manager/groups/ |
Upload File : |
{**
* templates/manager/groups/groupForm.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.
*
* Group form under journal management.
*
*}
{strip}
{assign var="pageId" value="manager.groups.groupForm"}
{assign var="pageCrumbTitle" value=$pageTitle}
{include file="common/header.tpl"}
{/strip}
<div id="groupFormDiv">
{if $group}
<ul class="menu">
<li class="current"><a href="{url op="editGroup" path=$group->getId()}">{translate key="manager.groups.editTitle"}</a></li>
<li><a href="{url op="groupMembership" path=$group->getId()}">{translate key="manager.groups.membership}</a></li>
</ul>
{/if}
<br />
<form id="groupForm" method="post" action="{url op="updateGroup"}">
{if $group}
<input type="hidden" name="groupId" value="{$group->getId()}"/>
{/if}
{include file="common/formErrors.tpl"}
<table class="data" width="100%">
{if count($formLocales) > 1}
<tr valign="top">
<td width="20%" class="label">{fieldLabel name="formLocale" key="form.formLanguage"}</td>
<td width="80%" class="value">
{if $group}{url|assign:"groupFormUrl" op="editGroup" path=$group->getId() escape=false}
{else}{url|assign:"groupFormUrl" op="createGroup" escape=false}
{/if}
{form_language_chooser form="groupForm" url=$groupFormUrl}
<span class="instruct">{translate key="form.formLanguage.description"}</span>
</td>
</tr>
{/if}
<tr valign="top">
<td width="20%" class="label">{fieldLabel name="title" required="true" key="manager.groups.title"}</td>
<td width="80%" class="value"><input type="text" name="title[{$formLocale|escape}]" value="{$title[$formLocale]|escape}" size="35" maxlength="80" id="title" class="textField" /></td>
</tr>
<tr valign="top">
<td width="20%" class="label"> </td>
<td width="80%" class="value">
<input type="checkbox" name="publishEmail" value="1" {if $publishEmail}checked="checked" {/if} id="publishEmail" />
{fieldLabel name="publishEmail" key="manager.groups.publishEmails"}
</td>
</tr>
<tr valign="top">
<td width="20%" class="label">{translate key="common.type"}</td>
<td width="80%" class="value">
{foreach from=$groupContextOptions item=groupContextOptionKey key=groupContextOptionValue}
<input type="radio" name="context" value="{$groupContextOptionValue|escape}" {if $context == $groupContextOptionValue}checked="checked" {/if} id="context-{$groupContextOptionValue|escape}" />
{fieldLabel name="context-"|concat:$groupContextOptionValue key=$groupContextOptionKey}<br />
{/foreach}
</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="groups" escape=false}'" /></p>
</form>
<p><span class="formRequired">{translate key="common.requiredField"}</span></p>
</div>
{include file="common/footer.tpl"}