source: seiven/productivo/templates/productivo.ue.datos.consultados.html @ ca8b5aa

Last change on this file since ca8b5aa was ca8b5aa, checked in by Ing. Roldan D. Vargas G <rvargas@…>, 6 años ago

funciones para el servicio de consulta a SIDEPRO. Incorporación de funciones en plantillas de consulta del módulo productivo

  • Propiedad mode establecida a 100644
File size: 2.0 KB
Línea 
1{% load i18n %}
2{% load static from staticfiles %}
3<div id="datos-consultados">
4    <hr>
5    <div class="row">
6        <div class="col-md-12 text-right">
7            <img src="{% static 'img/botones/descargar-pdf.png' %}" role="button" data-toggle="tooltip"
8                 alt="{% trans 'Descargar PDF' %}" title="{% trans 'Descargar PDF' %}"
9                 class="img-responsive inline">
10            <img src="{% static 'img/botones/descargar-ods.png' %}" role="button" data-toggle="tooltip"
11                 alt="{% trans 'Descargar ODS' %}" title="{% trans 'Descargar ODF' %}"
12                 class="img-responsive inline">
13            <img src="{% static 'img/botones/descargar-csv.png' %}" role="button" data-toggle="tooltip"
14                 alt="{% trans 'Descargar CSV' %}" title="{% trans 'Descargar CSV' %}"
15                 class="img-responsive inline">
16        </div>
17    </div>
18    <div class="row">
19        <div class="col-md-12">
20            <table class="table table-striped table-hover display dataTable responsive" width="100%" id="result-consult">
21                <thead>
22                    <tr>
23                        <th class="col-md-1">
24                            <input type="checkbox" id="check_all" role="button" data-toggle="tooltip"
25                                   title="{% trans 'Marque para seleccionar todos los registros' %}">
26                        </th>
27                        <th class="col-md-3">{% trans 'R.I.F.' %}</th>
28                        <th class="col-md-4">{% trans 'Nombre' %}</th>
29                        <th class="col-md-4">{% trans 'Razon Social' %}</th>
30                        <th class="col-md-4">{% trans 'Estado' %}</th>
31                    </tr>
32                </thead>
33                <tbody></tbody>
34            </table>
35        </div>
36    </div>
37    <div class="row separador-row">
38        <div class="col-md-12 text-right">
39            <button type="button" class="btn btn-warning" id="btn-next-filtros">{% trans 'Siguiente' %}</button>
40        </div>
41    </div>
42</div>
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.