Importer/views/twig/admin/d3_importer_afterticker.htm...

50 lines
2.5 KiB
Twig

{% if oView.isEOF() %}
{% include "headitem.html.twig" with {title: "GENERAL_ADMIN_TITLE"|translate, box: "box"} %}
{% else %}
{% set params = oViewConf.getSelfLink()|add_url_parameters("cl=")|cat(oViewConf.getActiveClassName())|cat("&fnc=doafterimport&action=")|cat(sAction)|cat("&round=")|cat(iRound)|cat("&oxid=")|cat(oxid) %}
{% include "headitem.html.twig" with {title: "GENERAL_ADMIN_TITLE"|translate, meta_refresh_sec: "0", meta_refresh_url: params, box: "box"} %}
{% endif %}
<form name="transfer" id="transfer" action="{{ oViewConf.getSelfLink()|raw }}" method="post">
{{ oViewConf.getHiddenSid()|raw }}
<input type="hidden" name="oxid" value="{{ oxid }}">
<input type="hidden" name="cl" value="{{ oViewConf.getActiveClassName() }}">
<input type="hidden" name="editlanguage" value="{{ editlanguage }}">
</form>
<form name="myedit" id="myedit" enctype="multipart/form-data" action="{{ oViewConf.getSelfLink()|raw }}" method="post">
{{ oViewConf.getHiddenSid()|raw }}
<input type="hidden" name="cl" value="{{ oViewConf.getActiveClassName() }}">
<input type="hidden" name="fnc" value="">
<input type="hidden" name="oxid" value="{{ oxid }}">
<input type="hidden" name="line" value="{{ actcsvline }}">
<table cellspacing="0" cellpadding="0" border="0" width="98%">
{% if oView.isFailImport() %}
{% block d3_d3importer_views_admin_tpl_d3_importer_ticket_failure %}
<tr>
<td valign="top" class="edittext" colspan="2">
<div class="errorbox">{{ translate({ ident: "D3_IMPORTER_FAILIMPORT_"|cat(iFailImport) }) }}</div>
</td>
</tr>
{% endblock %}
{% else %}
{% block d3_d3importer_views_admin_tpl_d3_importer_success %}
<tr>
<td valign="top" class="edittext">
<div style="text-align: center;">
<h3>{{ translate({ ident: "D3_IMPORTER_AFTERIMPORT_INFO1" }) }} : {{ iActPos }} {{ translate({ ident: "D3_IMPORTER_AFTERIMPORT_INFO2" }) }} {{ iAllPos }}.</h3>
{% if oView.isEOF() %}
<h3>{{ translate({ ident: "D3_IMPORTER_AFTERIMPORT_IMPORTEND" }) }}</h3>
{% endif %}
</div>
</td>
</tr>
{% endblock %}
{% endif %}
</table>
</form>
{% include "bottomnaviitem.html.twig" %}
{% include "bottomitem.html.twig" %}