/usr/share/akonadicontact/grantleetheme/default/addresseslocation.html is in kdepimlibs-data 4:16.04.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | <!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">
<html>
<head>
<title>.</title>
<link href="{{ absoluteThemePath }}/addresseslocation.css" rel="stylesheet" type="text/css" />
</head>
<body>
{% if addresses %}
{% for address in addresses %}
<div id="headeraddress">
<div id="addresstype">{{ address.addressType }}</div>
<div id="actiontype">
{% if readOnly %}
{% else %}
{{ address.modifyAddressAction|safe}} {{ address.removeAddressAction|safe}}
{% endif %}
</div>
<br>
<div id="address" > {{ address.formattedAddress }} </div>
<br style="clear: both;"/>
<br/>
</div>
{% endfor %}
{% endif %}
</body>
|