Created
December 10, 2017 20:37
-
-
Save umutcoskun/0c6538be05bebec9251c3bd11cb004c0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@has_permission('can_view_dashboard') | |
def view_dashboard(**kwargs): | |
user = kwargs.pop('user') | |
print('\n- DASHBOARD') | |
print('- Merhaba {username}, giriş başarılı.'.format( | |
username=user.name | |
)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment