Skip to content

Commit

Permalink
Add extra_css block
Browse files Browse the repository at this point in the history
  • Loading branch information
tnaccarato committed Mar 17, 2024
1 parent d88d0b4 commit 9eb4df8
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@
<title>{% block title %}Fakepal{% endblock title %}</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="{% static 'css/base.css' %}">



{% block extra_css %}{% endblock %}
</head>
<body>
<!-- Navigation -->
Expand All @@ -36,9 +34,6 @@
<a class="nav-link dropdown-toggle" href="#" id="requestsDropdown" role="button"
data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Requests
{% if incoming_requests_count %}
<span class="badge bg-primary rounded-circle">{{ incoming_requests_count }}</span>
{% endif %}
</a>
<div class="dropdown-menu" aria-labelledby="requestsDropdown">
<a class="dropdown-item" href="{% url 'payapp:make_request' %}">Make a Payment Request</a>
Expand Down Expand Up @@ -79,6 +74,9 @@
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="{% url 'payapp:notifications' %}">
{% if unread_notifications_count %}
<span class="badge bg-primary rounded-circle">{{ unread_notifications_count }}</span>
{% endif %}
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-bell" viewBox="0 0 16 16">
<path d="M8 16a2 2 0 0 0 2-2H6a2 2 0 0 0 2 2M8 1.918l-.797.161A4 4 0 0 0 4 6c0
Expand Down

0 comments on commit 9eb4df8

Please sign in to comment.