mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-11-04 07:05:41 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			688 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			688 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% load i18n %}
 | 
						|
 | 
						|
<div class="offcanvas offcanvas-end" tabindex="-1" id="offcanvas-notification" data-bs-scroll="true" aria-labelledby="offcanvas-notification-label">
 | 
						|
    <div class="offcanvas-header">
 | 
						|
      <h5 id="offcanvas-notification-label">{% trans "Notifications" %}</h5>
 | 
						|
      <button type="button" class="btn-close text-reset" data-bs-dismiss="offcanvas" aria-label="Close"></button>
 | 
						|
    </div>
 | 
						|
    <div class="offcanvas-body">
 | 
						|
      <div id="notification-center">
 | 
						|
        <p class='text-muted'>{% trans "Notifications will load here" %}</p>
 | 
						|
      </div>
 | 
						|
      <hr>
 | 
						|
      <a href="{% url 'notifications' %}">{% trans "Show all notifications and history" %}</a>
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
 |