Skip to content

Instantly share code, notes, and snippets.

@MariaCarolinass
Created July 27, 2020 18:32
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 MariaCarolinass/1c37ed2449d740effaf21f93618c25de to your computer and use it in GitHub Desktop.
Save MariaCarolinass/1c37ed2449d740effaf21f93618c25de to your computer and use it in GitHub Desktop.
Menu dropdown
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="{{ url_for('main.index') }}">{{ _('Página Inicial') }}</a></li>
<li><a href="{{ url_for('main.explore') }}">{{ _('Explorar') }}</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
{% if current_user.is_anonymous %}
<li><a href="{{ url_for('auth.login') }}">{{ _('Entrar') }}</a></li>
<li><a href="{{ url_for('auth.register') }}">{{ _('Inscrever-se') }}</a></li>
{% else %}
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown">{{ _('Registrar Fonte/Aplicação') }}</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="{{ url_for('main.register_source') }}">{{ _('Registrar fonte de dados abertos') }}</a>
<a class="dropdown-item" href="{{ url_for('main.register_software') }}">{{ _('Registrar aplicação') }}</a>
</div>
</li>
<li><a href="{{ url_for('main.user', username=current_user.username) }}">{{ _('Usuário') }}</a></li>
<li><a href="{{ url_for('auth.logout') }}">{{ _('Sair') }}</a></li>
{% endif %}
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment