[web2py] Re: Learning Management System (LMS)

2021-12-13 Thread Dave S

On Wednesday, December 8, 2021 at 3:14:17 PM UTC-8 黄祥 wrote:

> is there any web2py app or example to create Learning Management System 
> (LMS) with the exam ?
>
> thanks and best regards,
> stifan
>


What is a Learning Management System?

As for exams, I didn't find anything at web2pyslices, but I'm sure 
multiple-choice quizzes have been discussed here at some point.  I'm not 
ready to search the Groups archive or stackoverflow just yet.

/dps
 

-- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/ef4f44dc-32b5-4f78-ba06-b6653dc98907n%40googlegroups.com.


Re: [web2py] Log4j

2021-12-13 Thread Nico Zanferrari
I'm quite sure it doesn't by itself, since  Log4j is a java utility.

But if you place a web server (expecially Apache) as a frontend, this could
be a security problem nowadays if this one uses Log4j.

nico

Il giorno lun 13 dic 2021 alle ore 13:40 Oli  ha
scritto:

> does anybody know if web2py use  Log4j?
>
> --
> 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 web2py+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/web2py/85f9c6ed-8607-426f-8709-af966b27ad99n%40googlegroups.com
> 
> .
>

-- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/CAAE8D_CEt8xrgbp%2BEmAv8ajOi668y5CH2r1DzESrOh3yKEq5jw%40mail.gmail.com.


[web2py] Re: Keeping track of database entires

2021-12-13 Thread mostwanted
You gave an idea and it seems to be working, below is the code i'm using in 
the view:

{{
for dt in dt:
now_dt=request.now.date()-dt.payment_date
now_dt2=now_dt.days
name=dt.client.parent_name
policy_number=dt.client.policy_number
}}

$(document).ready(function(){
if ({{=now_dt2}} >=60)
{
 $('#expiry').show();
}
});



 
{{=name}} ({{=policy_number}})'s payments are 
behind by {{=now_dt2}} DAYS!!! 

{{pass}}

Thanks alot Clemens

On Monday, December 13, 2021 at 11:55:56 AM UTC+2 Clemens wrote:

> My first thought was to check this when an user has logged in. Having a 
> redirect after login to a controller checking the time, the last payment 
> was made, can then produce a corresponding message.
>
> I googled "web2py redirect after login" and found how to do a redirect 
> after login:
> https://stackoverflow.com/questions/18902549/web2py-redirect-after-login
>
> Is it what you want?
>
> Best regards
> Clemens
>
> On Monday, December 13, 2021 at 6:27:10 AM UTC+1 mostwanted wrote:
>
>> Is there a way of keeping track of table entries? I have to create a 
>> function that shows a pop-up warning when a client has not made payments in 
>> 3 months ,i dont know where to begin, any ideas?
>>
>

-- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/aeea11f6-cf41-4b54-ac22-161c08e4c456n%40googlegroups.com.


[web2py] Log4j

2021-12-13 Thread Oli
does anybody know if web2py use  Log4j?

-- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/85f9c6ed-8607-426f-8709-af966b27ad99n%40googlegroups.com.


[web2py] Re: Keeping track of database entires

2021-12-13 Thread Clemens
My first thought was to check this when an user has logged in. Having a 
redirect after login to a controller checking the time, the last payment 
was made, can then produce a corresponding message.

I googled "web2py redirect after login" and found how to do a redirect 
after login:
https://stackoverflow.com/questions/18902549/web2py-redirect-after-login

Is it what you want?

Best regards
Clemens

On Monday, December 13, 2021 at 6:27:10 AM UTC+1 mostwanted wrote:

> Is there a way of keeping track of table entries? I have to create a 
> function that shows a pop-up warning when a client has not made payments in 
> 3 months ,i dont know where to begin, any ideas?
>

-- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/0d43fbca-6067-47d9-9ddf-416b4bd8388an%40googlegroups.com.