Changeset 25ec4a7 in firmaeventos


Ignore:
Timestamp:
Nov 22, 2017, 11:02:15 AM (6 years ago)
Author:
rudmanmrrod <rudman22@…>
Branches:
master
Children:
9add819
Parents:
d2472e8 (diff), bc1e568 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of https://github.com/cenditel-desarrollo/FirmaEventos

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • base/templates/base.vars.javascript.html

    ra1de3f1 rd2472e8  
    44    var URL_USUARIO_EVENTO = "{% url 'participantes:search_participante_nid' %}";
    55   
    6     // URUL para actualizar la firma de un participante
     6    // URL para actualizar la firma de un participante
    77    var URL_ACTUALIZAR_PARTICIPACION = "{% url 'participantes:update_participante_evento' %}";
    8        
     8           
    99</script>
  • eventos/forms.py

    ra4764f9 rad59aa1  
    4444             'placeholder': 'Subir Archivo',
    4545             'accept': '.pdf'})
     46        self.fields['pos_x'].widget = forms.HiddenInput()
     47        self.fields['pos_y'].widget = forms.HiddenInput()
    4648
    4749class FirmaEventoForm(forms.Form):
  • eventos/models.py

    r61f3a75 rad59aa1  
    1414    fecha = models.DateField(null=False)
    1515    serial = models.CharField(max_length=128)
     16    pos_x = models.CharField(max_length=32)
     17    pos_y = models.CharField(max_length=32)
    1618    activo = models.BooleanField(default=True)
    1719
  • eventos/templates/evento.detail.html

    r27c0bd4 rd2472e8  
    5555        </iframe>
    5656    </div>
     57    <div class="row">
     58        <a class="btn waves-effect blue darken-1" href="{% url 'events:list_events' %}" >Regresar</a>
     59    </div>
    5760{% endblock %}
  • eventos/templates/evento.firma.html

    rb84cfca rd2472e8  
    1818            <div id="datos_paricipante"></div>
    1919        </form>
     20        <div class="row" style="padding-top: 25px;">
     21            <a class="btn left waves-effect blue darken-1" href="{% url 'events:list_events' %}" >Regresar</a>
     22        </div>
    2023    </div>
    2124{% endblock %}
Note: See TracChangeset for help on using the changeset viewer.