HTML document, ASCII text
        
            1
            {% extends "default.html" %} 
        
            2
            {% block title %} 
        
            3
                {% trans %}Notifications{% endtrans %} 
        
            4
            {% endblock %} 
        
            5
            {% block breadcrumbs %} 
        
            6
                <li><a href="/notifications">{% trans %}Notifications{% endtrans %}</a></li> 
        
            7
            {% endblock %} 
        
            8
            {% block content %} 
        
            9
                <x-vbox> 
        
            10
                    <x-frame style="--width: 896px;" class="flexible-space"> 
        
            11
                        <x-vbox> 
        
            12
                            {% if notifications %} 
        
            13
                                {% for notification in notifications %} 
        
            14
                                    <article class="card"> 
        
            15
                                        <section class="card-main"> 
        
            16
                                            {{ notification.notification.json }} 
        
            17
                                        </section> 
        
            18
                                    </article> 
        
            19
                                {% endfor %} 
        
            20
                            {% else %} 
        
            21
                                <p>{% trans %}When you get notifications, they'll be shown here.{% endtrans %}</p> 
        
            22
                            {% endif %} 
        
            23
                        </x-vbox> 
        
            24
                    </x-frame> 
        
            25
                </x-vbox> 
        
            26
            {% endblock %} 
        
            27