|
|
|
@ -136,10 +136,6 @@
|
|
|
|
|
{% for shelf in g.shelves_access %}
|
|
|
|
|
<li><a href="{{url_for('shelf.show_shelf', shelf_id=shelf.id)}}"><span class="glyphicon glyphicon-list shelf"></span>{{shelf.name|shortentitle(40)}}{% if shelf.is_public == 1 %} {{_('(Public)')}}{% endif %}</a></li>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
<!--li class="nav-head hidden-xs your-shelves">{{_('Your Shelves')}}</li>
|
|
|
|
|
{% for shelf in g.user.shelf %}
|
|
|
|
|
<li><a href="{{url_for('shelf.show_shelf', shelf_id=shelf.id)}}"><span class="glyphicon glyphicon-list private_shelf"></span>{{shelf.name|shortentitle(40)}}{% if shelf.is_public == 1 %} {{_('(Public)')}}{% endif %}</a></li>
|
|
|
|
|
{% endfor %}-->
|
|
|
|
|
{% if not g.user.is_anonymous %}
|
|
|
|
|
<li id="nav_createshelf" class="create-shelf"><a href="{{url_for('shelf.create_shelf')}}">{{_('Create a Shelf')}}</a></li>
|
|
|
|
|
<li id="nav_about" {% if page == 'stat' %}class="active"{% endif %}><a href="{{url_for('about.stats')}}"><span class="glyphicon glyphicon-info-sign"></span> {{_('About')}}</a></li>
|
|
|
|
|