Skip to content

Instantly share code, notes, and snippets.

@Porter97
Created March 3, 2020 18:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Porter97/7785ffc7956f13ded030975fa77ff3f8 to your computer and use it in GitHub Desktop.
Save Porter97/7785ffc7956f13ded030975fa77ff3f8 to your computer and use it in GitHub Desktop.
#...
<ul class="nav navbar-nav">
<li><a href="{{ url_for('main.index') }}">Home</a></li>
{% if current_user.is_authenticated %}
<li><a href="{{ url_for('main.user', username=current_user.username) }}">Profile</a></li>
<li><a href="{{ url_for('main.users') }}">Users</a></li>
<li><a href="{{ url_for('main.new_collection') }}">Add Collection</a></li>
<li><a href="{{ url_for('main.new_content') }}">Add Content</a></li>
{% endif %}
</ul>
#...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment