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
Basic Output | |
Hello, {{ current_user.name }} | |
Basic Logic | |
{% if not current_user %} | |
You're not logged in! | |
{% elif current_user and curent_user.is_admin %} | |
Good day, sir! | |
{% else %} |