Changeset 16cf088 in firmaeventos for eventos/forms.py


Ignore:
Timestamp:
Nov 20, 2017, 3:54:37 PM (7 years ago)
Author:
lhernandez <lhernandez@…>
Branches:
master
Children:
8ec6ee3
Parents:
94b3e3f (diff), def10d2 (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:

Implementado registro de eventos

File:
1 edited

Legend:

Unmodified
Added
Removed
  • eventos/forms.py

    r94b3e3f r16cf088  
    1313
    1414    @author Ing. Leonel P. Hernandez M. (lhernandez at cenditel.gob.ve)
    15     @copyright <a href='http://www.gnu.org/licenses/gpl-2.0.html'>GNU Public License versión 2 (GPLv2)</a>
     15    @copyright <a href='https://www.gnu.org/licenses/gpl-3.0.en.html'>GNU Public License versión 3 (GPLv3)</a>
    1616    @date 19-11-2017
    1717    @version 1.0.0
     
    4242        self.fields['archivo'].required=True
    4343        self.fields['archivo'].widget.attrs.update(
     44<<<<<<< HEAD
    4445            {
    4546            'class': 'file-path validate',
    4647            'placeholder': 'Subur un archivo'})
     48=======
     49            {'class': 'file-path',
     50             'placeholder': 'Subir Archivo'})
     51
     52class FirmaEventoForm(forms.Form):
     53    """!
     54    Clase que permite crear el formulario para la firma de un documento
     55
     56    @author Rodrigo Boet (rboet at cenditel.gob.ve)
     57    @copyright <a href='https://www.gnu.org/licenses/gpl-3.0.en.html'>GNU Public License versión 3 (GPLv3)</a>
     58    @date 20-11-2017
     59    @version 1.0.0
     60    """
     61   
     62    pasaporte = forms.CharField(widget=forms.TextInput(attrs={'class':'form-control','placeholder':'Ingrese su pasaporte'}))
     63>>>>>>> def10d28a56c05436aa09889ff50481aaec4bc4a
Note: See TracChangeset for help on using the changeset viewer.