57 lines
1.7 KiB
Smarty
57 lines
1.7 KiB
Smarty
<form method="post" action="{url Dictionary='Edit' id=$objDict->GetId()}" id="sendForm" enctype="multipart/form-data">
|
|
<div class="panelRightTop"></div>
|
|
<div class="panelRightBody">
|
|
<div class="paddedContent">
|
|
{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 style="display: none;">
|
|
<td>Wersja EN</td>
|
|
<td>
|
|
<textarea class="input420" name="replacement[en]">{$objDict->GetReplacementEn()}</textarea>
|
|
</td>
|
|
</tr>
|
|
{*
|
|
<tr>
|
|
<td>Wersja RU</td>
|
|
<td>
|
|
<textarea class="input420" name="replacement[ru]">{$objDict->GetReplacementRu()}</textarea>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Wersja DE</td>
|
|
<td>
|
|
<textarea class="input420" name="replacement[de]">{$objDict->GetReplacementDe()}</textarea>
|
|
</td>
|
|
</tr>
|
|
*}
|
|
</tbody>
|
|
</table>
|
|
{/dropDownContainer}
|
|
</div>
|
|
</div>
|
|
<div class="panelRightBottom">
|
|
<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>
|
|
</div>
|
|
</form>
|