]> git.ipfire.org Git - ipfire.org.git/blame - templates/fireinfo/profile-notfound.html
Make all absolute links use https:// instead of http://
[ipfire.org.git] / templates / fireinfo / profile-notfound.html
CommitLineData
140172cf
MT
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">
be699a90 12 <div class="col-lg-12 col-md-12">
140172cf 13 <p>
e52b45b6 14 There was no profile data found for profile <code>{{ profile_id }}</code>.
140172cf
MT
15 </p>
16 <p>
e52b45b6
MT
17 The profile owner has probably not submitted any data
18 or recently disabled the transmission.
140172cf
MT
19 </p>
20 <p>
e52b45b6 21 If this is your own profile, you can
ba43a892 22 <a href="https://wiki.ipfire.org/en/fireinfo/my_profile" target="_blank">enable</a>
e52b45b6 23 the submission on the web user interface.
140172cf
MT
24 </p>
25 </div>
26 </div>
27{% end block %}