How to write a custom decorator in django?
问题 The problem - @is_premium_user def sample_view: ....... ...... I want certain views accesible to only the premium users of the website. And how can I use this decorator across various applications in my project? 回答1: You don't have to write your own decorator for this as user_passes_test is already included in Django. And there's a snippet (group_required_decorator) that extends this decorator and which should be pretty appropriate for your use case. If you really want to write your own