]> git.ipfire.org Git - ipfire.org.git/blob - templates/stasy-profile-notfound.html
Move everything to the root of the repository.
[ipfire.org.git] / templates / stasy-profile-notfound.html
1 {% extends "base-1.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="span12">
13 <p>
14 {% if lang == "de" %}
15 Es wurden keine Daten für das Profil <code>{{ profile_id }}</code>
16 gefunden.
17 {% else %}
18 There was no profile data found for profile <code>{{ profile_id }}</code>.
19 {% end %}
20 </p>
21 <p>
22 {% if lang == "de" %}
23 Der Eigentümer dieses Profils hat möglicherweise der Veröffentlichung
24 der Daten nicht zugestimmt oder diese abgeschaltet.
25 {% else %}
26 The profile owner has probably not submitted any data
27 or recently disabled the transmission.
28 {% end %}
29 </p>
30 <p>
31 {% if lang == "de" %}
32 Falls dieses Profil Ihr eigenes ist, so können Sie die Veröffentlichung
33 im Web-Interface
34 <a href="http://wiki.ipfire.org/de/fireinfo/my_profile" target="_blank">einschalten</a>.
35 {% else %}
36 If this is your own profile, you can
37 <a href="http://wiki.ipfire.org/en/fireinfo/my_profile" target="_blank">enable</a>
38 the submission on the web user interface.
39 {% end %}
40 </p>
41 </div>
42 </div>
43 {% end block %}