update
This commit is contained in:
51
Admin/template/partial/Dictionary/Edit.tpl
Normal file
51
Admin/template/partial/Dictionary/Edit.tpl
Normal file
@@ -0,0 +1,51 @@
|
||||
<form method="post" action="{url Dictionary='Edit' id=$objDict->GetId()}" id="sendForm" enctype="multipart/form-data">
|
||||
|
||||
{assign var="additionalTitle" value=""}
|
||||
|
||||
{dropDownContainer title="Ogólne" additionalTitle=$additionalTitle}
|
||||
<table width="100%" cellspacing="0" cellpadding="5" border="0" class="frameTableForm tableContetntWhite">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Klucz</td>
|
||||
<td>
|
||||
{$objDict->GetKeyword()}
|
||||
<input name="keyword" type="hidden" value="{$objDict->GetKeyword()}" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Wersja PL</td>
|
||||
<td>
|
||||
<textarea class="input420" name="replacement[pl]">{$objDict->GetReplacement()}</textarea>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Wersja EN</td>
|
||||
<td>
|
||||
<textarea class="input420" name="replacement[en]">{$objDict->GetReplacementEn()}</textarea>
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="display: none;">
|
||||
<td>Wersja RU</td>
|
||||
<td>
|
||||
<textarea class="input420" name="replacement[ru]">{$objDict->GetReplacementRu()}</textarea>
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="display: none;">
|
||||
<td>Wersja DE</td>
|
||||
<td>
|
||||
<textarea class="input420" name="replacement[de]">{$objDict->GetReplacementDe()}</textarea>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
{/dropDownContainer}
|
||||
<div class="clearBoth"></div>
|
||||
|
||||
<div class="panelButtons">
|
||||
<input type="button" class="cancel" value="Anuluj" name="" onclick="document.location.href='{url Dictionary=Index}';"/>
|
||||
<input type="submit" value="Zapisz" name="doDictEdit"/>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
Reference in New Issue
Block a user