{# -*- coding: utf-8 -*- -*- mode: python -*- elf_diff Copyright (C) 2021 Noseglasses (shinynoseglasses@gmail.com) This program is free software: you can redistribute it and/or modify it under it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3. This program is distributed in the hope that it will be useful, but WITHOUT but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with along with this program. If not, see . #} {% extends "single_page_report_base.html" %} {% block title %}Pair Report{% endblock %} {% block content %} {% block preamble %}

elf_diff Logo {{doc_title}}

{% endblock %} {% block toc %}

Overview

{% endblock %} {% block binaries %}

Binaries {{home}}

old: {{old_binary_file}}

new: {{new_binary_file}}

{% endblock %} {% block resource_consumption %}

Statistics {{home}}

{{ stats_content }} {% endblock %} {% block symbol_overview %}

Symbols {{home}}

Persisting Symbols {{home}}

{{ persisting_symbols_overview }}

Disappeared Symbols {{home}}

{{ disappeared_symbols_overview }}

New Symbols {{home}}

{{ new_symbols_overview }}

Similar Symbols {{home}}

{{ similar_symbols_overview }} {% endblock %} {% block symbol_details %} {% if show_binary_details == True %}

Binary Details {{home}}

{% endif %} {% if show_old_binary_info == True %}

{{old_binary_file}} {{home}}

  {{old_binary_info}}
  
{% endif %} {% if show_new_binary_info == True %}

{{new_binary_file}} {{home}}

  {{new_binary_info}}
  
{% endif %} {% if show_build_info == True %}

Build Info

  {{build_info}}
  
{% endif %} {% if skip_details == False %}

Symbol Details {{home}}

Persisting Symbols {{home}}

{{ persisting_symbols_details_content }}

Disappeared Symbols {{home}}

{{ disappeared_symbols_details_content }}

New Symbols {{home}}

{{ new_symbols_details_content }}

Similar Symbols {{home}}

{{ similar_symbols_details_content }} {% endif %} {% endblock %} {% endblock %}