[pyar] [django] property en list_display

Daniel dmlistapython en gmail.com
Vie Feb 24 17:26:34 ART 2017


que tonto me sentí... :(
no  me dí cuenta que terminaba siendo un html y como, ya sabía ignora los
espacios repetidos.
gracias por hacermelo notar (a las dos cosas: que soy un tonto y que era el
html, jaja)

Lo solucioné así (por si a alguien le sirve):



*(Dentro del modeladmin)    *list_display = ([..],  'precio_ventahtml')
   def precio_ventahtml(self, obj):
        moneda = "{0:<4}".format(obj.monedaActual().__str__()).replace(" ",
" ")
        precio = "{0:10.2f}".format(obj.precio_venta).replace(" ", " ")
        resp = '<span style="font-family:\'Courier\'""><span
style="color:gray;width:10px;">{0}</span>{1}</span>'.format(moneda, precio)
        return resp

    precio_ventahtml.allow_tags = True
    precio_ventahtml.short_description = 'Precio de venta'
------------ próxima parte ------------
Se ha borrado un adjunto en formato HTML...
URL: <http://listas.python.org.ar/pipermail/pyar/attachments/20170224/070dbb92/attachment.html>


Más información sobre la lista de distribución pyar