]> git.ozlabs.org Git - hiprofile/blobdiff - share/hiprofile/binary.html
Convert to a python package
[hiprofile] / share / hiprofile / binary.html
diff --git a/share/hiprofile/binary.html b/share/hiprofile/binary.html
deleted file mode 100644 (file)
index f94a758..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-{% extends "base.html" %}
-
-{% block heading %}
-Binary: {{ binary.shortname() }}
-{% endblock %}
-
-{% block content %}
-<table class="meta">
- <tr>
-  <th>Total samples:</th>
-  <td>{{ binary.count }}</td>
- </tr>
- <tr>
-  <th>Full path:</th>
-  <td><span class="path">{{ binary.name }}</span></td>
- </tr>
-</table>
-
-<table>
- <tr>
-  <th>Symbol</th>
-  <th>Samples</th>
-  <th>%</th>
- </tr>
-{% for symbol in binary.references %}
- <tr>
-  <td><a href="{{ symbol.filename() }}">{{ symbol.name }}</a></td>
-  <td>{{ symbol.count }}</td>
-  <td>{{ "%.2f"|format(symbol.percentage) }}</td>
-  <td><img src="bar.png" height="10"
-   width="{{ "%d"|format(symbol.percentage) }}"
-   alt="{{ "%.1f"|format(symbol.percentage) }}%"/></td>
- </tr>
-{% endfor %}
-</table>
-
-{% endblock %}