]> git.ipfire.org Git - ipfire.org.git/blob - templates/fireinfo/profile-notfound.html
Make all absolute links use https:// instead of http://
[ipfire.org.git] / templates / fireinfo / profile-notfound.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ _("Profile not found") }}}{% end block %}
4
5 {% block body %}
6 <img class="pull-right" src="{{ static_url("images/error/404.png") }}" alt="{{ _("Error") }}" />
7 <div class="page-header">
8 <h1>404 - {{ _("Profile not found") }}</h1>
9 </div>
10
11 <div class="row">
12 <div class="col-lg-12 col-md-12">
13 <p>
14 There was no profile data found for profile <code>{{ profile_id }}</code>.
15 </p>
16 <p>
17 The profile owner has probably not submitted any data
18 or recently disabled the transmission.
19 </p>
20 <p>
21 If this is your own profile, you can
22 <a href="https://wiki.ipfire.org/en/fireinfo/my_profile" target="_blank">enable</a>
23 the submission on the web user interface.
24 </p>
25 </div>
26 </div>
27 {% end block %}