diff options
Diffstat (limited to 'app/templates/base.html')
| -rw-r--r-- | app/templates/base.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/app/templates/base.html b/app/templates/base.html index ff2b0fb..f3877b7 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -61,9 +61,11 @@ <ul class="navbar-nav ml-auto"> {% if current_user.is_authenticated %} <li class="nav-item"><a class="nav-link" href="{{ url_for('notifications.list_all') }}"> - <img src="/static/notification{% if current_user.notifications %}_alert{% endif %}.svg" /> + <i class="fas fa-bell" {% if current_user.notifications %} style="color: yellow;"{% endif %}></i> + </a></li> + <li class="nav-item"><a class="nav-link" href="{{ url_for('packages.create_edit') }}"> + <i class="fas fa-plus"></i> </a></li> - <li class="nav-item"><a class="nav-link" href="{{ url_for('packages.create_edit') }}">+</a></li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" data-toggle="dropdown" |
