On Saturday, November 5, 2016 at 3:56:01 AM UTC-4, Alex Glaros wrote:
>
> I want to display something like this format:  *Saturday, 05 November 
> 2016, 11:30 AM*
>
> the field through_date is datetime type
>
> This: {{=r.auth_membership.through_date}} produces: 2016-11-23 21:14:25
>
> When I apply strftime like this: {{= 
> r.auth_membership.from_date.strftime("%A, %d %B %Y")}}
>
> error arises:
>
>  'NoneType' object has no attribute 'strftime'
>
> what is correct syntax?
>

The problem is obviously that r.auth_membership.from_date is None for some 
record -- so you have to check for that before treating it as a date object.

Anthony

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to