Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Marta Miranda
/
boletin_api
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Enzo Yair
2023-09-11 09:43:23 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a467e570357ba60584e4c1db8abde70aae0b7faf
a467e570
1 parent
87bc529a
correcion de return en modelo edicto
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
project/apps/edicto/models.py
project/apps/edicto/models.py
View file @
a467e57
...
...
@@ -44,7 +44,7 @@ class Edicto(models.Model):
verbose_name_plural
=
'Edictos'
def
__str__
(
self
):
return
f
"{self.u
uid
} - Edicto"
return
f
"{self.u
suario
} - Edicto"
class
ComprobantePago
(
models
.
Model
):
...
...
@@ -59,5 +59,5 @@ class ComprobantePago(models.Model):
verbose_name_plural
=
'ComprobantesPagos'
def
__str__
(
self
):
return
f
"{self.numero_comprobante} comprobante pago de {self.edicto.u
uid
}"
return
f
"{self.numero_comprobante} comprobante pago de {self.edicto.u
suario
}"
...
...
Please
register
or
login
to post a comment