ASCII text
        
            1
            {% extends "error.html" %} 
        
            2
            {% block error %} 
        
            3
                {% trans %}500{% endtrans %} 
        
            4
            {% endblock %} 
        
            5
            {% block heading %} 
        
            6
                {% trans %}500 internal server error{% endtrans %} 
        
            7
            {% endblock %} 
        
            8
            {% block text %} 
        
            9
                {% trans %}The program running on the server has crashed. This is a problem with the program; you did nothing wrong. Please send it to the server administrator.{% endtrans %} 
        
            10
            {% endblock %} 
        
            11
            {% block icon %}mdi:cloud-alert{% endblock %} 
        
            12