You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
3.3 KiB
80 lines
3.3 KiB
<script type='text/javascript' src="../js/funciones.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="../resources/plugin.css"/>
|
|
|
|
<div class="row">
|
|
<div class="span12">
|
|
<h3>Tipo de moneda:</h3>
|
|
<select id="tipo_moneda">
|
|
<option value="" selected="selected">Seleccione una moneda</option>
|
|
{% for moneda in monedas %}
|
|
{% if moneda.status == 1 %}
|
|
<option value="{{ moneda.id_country }}" selected="selected">{{ moneda.country_name }} => {{
|
|
moneda.currency_code }}
|
|
</option>
|
|
{% else %}
|
|
<option value="{{ moneda.id_country }}">{{ moneda.country_name }} => {{ moneda.currency_code }}</option>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</select>
|
|
<input type="button" id="save_money" class="btn btn-primary" value="Guardar" />
|
|
|
|
|
|
{% if paypal_enable == "true" %}
|
|
<hr />
|
|
<h3>Configuración PayPal:</h3>
|
|
{% if paypal.sandbox == "SI" %}
|
|
Sandbox(entorno de pruebas): <input type="checkbox" id="sandbox" value="SI" checked="checked"/>
|
|
{% else %}
|
|
Sandbox(entorno de pruebas): <input type="checkbox" id="sandbox" value="SI" />
|
|
{% endif %}
|
|
<br />
|
|
API_UserName: <input type="text" id="username" value="{{ paypal.username | e}}" /><br/>
|
|
API_Password: <input type="text" id="password" value="{{ paypal.password | e }}"/><br/>
|
|
API_Signature: <input type="text" id="signature" value="{{ paypal.signature | e }}"/><br/>
|
|
<input type="button" id="save_paypal" class="btn btn-primary" value="Guardar"/>
|
|
|
|
{% endif %}
|
|
|
|
{% if transference_enable == "true" %}
|
|
<hr />
|
|
<h3>Configuración Transferencia: </h3>
|
|
<table id="tabla_trasferencia" class="data_table">
|
|
<tr class="row_odd">
|
|
<th>{{ 'Name'|get_lang }}</th>
|
|
<th>{{ 'Account'|get_lang }}</th>
|
|
<th>{{ 'SWIFT'|get_lang }}</th>
|
|
<th class="span1 ta-center">{{ 'Options'|get_lang }}</th>
|
|
</tr>
|
|
{% set i = 0 %}
|
|
|
|
{% for transf in transferencia %}
|
|
{{ i%2==0 ? '
|
|
<tr class="row_even">' : '
|
|
<tr class="row_odd">' }}
|
|
{% set i = i + 1 %}
|
|
<td>{{ transf.name | e }}</td>
|
|
<td>{{ transf.account | e }}</td>
|
|
<td>{{ transf.swift | e }}</td>
|
|
<td class="ta-center" id="account{{ transf.id }}">
|
|
<img src="{{ ruta_borrar }}" class="cursor delete_account" alt="ok"/>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
{{ i%2==0 ? '
|
|
<tr class="row_even">' : '
|
|
<tr class="row_odd">' }}
|
|
<td><input class="span4" type="text" id="tname"/></td>
|
|
<td><input type="text" id="taccount"/></td>
|
|
<td><input class="span2" type="text" id="tswift"</td>
|
|
<td class="ta-center">
|
|
<img class="cursor" id="add_account" src="{{ ruta_more }}" alt="add account"/>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
{% endif %}
|
|
|
|
|
|
</div>
|
|
<div class="cleared"></div>
|
|
</div> |