> > Note, SQLFORM.grid itself takes a user_signature argument (which defaults > to True), so you may not need the @auth decorator. Also, is the user logged > in -- signature requires login? >
The way I had it set up was, the welcome page requires login, while all other pages require signatures. This turned out to be not ideal, since I couldn't link to any pages from an email being sent out. So I just swapped them all to requires_login, and no more problem. You're right, just tried it and removing the @auth decorator makes it work fine.