{{ data.owner_name }},
                {% trans receive_date=data.receive_date.strftime('%A, %e %B %Y, %H:%M:%S'), author_date=data.author_date.strftime("%A, %e %B %Y, %H:%M:%S"),
                         receive_unix=data.receive_date.timestamp() | int, author_unix=data.author_date.timestamp() | int
                %}
                    created on {{ author_date }} ({{ author_unix }}),
                    received on {{ receive_date }} ({{ receive_unix }})
                {% endtrans %}
                
                {% trans %}Author identity:{% endtrans %} {{ data.owner_identity | harvester_protection | safe }}
            
{{ data.sha }}
            
                                {% elif vars.hunk_started %}
                                    {% if line.startswith("+") %}
                                        
                                        {{ line[1:] }}
                                        {% set vars.modified_line = vars.modified_line + 1 %}
                                    {% elif line.startswith("-") %}
                                        
                                        {{ line[1:] }}
                                        {% set vars.original_line = vars.original_line + 1 %}
                                    {% elif not line.startswith("\\") %}
                                        {% if line %}
                                            
                                            {{ line[1:] }} 
                                        {% endif %}
                                        {% if not line.startswith("@@") %}
                                            {% set vars.original_line = vars.original_line + 1 %}
                                            {% set vars.modified_line = vars.modified_line + 1 %}
                                        {% endif %}
                                    {% endif %}
                                {% endif %}
                                {% for comment in comment_query.filter_by(commit=data, file=file, line_number=vars.original_line).all() %}
                                    
                                        {{ comment.message }}
                                    
                                {% endfor %}
                            {% endfor %}
                            {% if vars.hunk_started %}
                                 
                            {% endif %}