It's 2012 all up in here
[mediagoblin.git] / mediagoblin / templates / mediagoblin / user_pages / user.html
CommitLineData
9a16e16f
SS
1{#
2# GNU MediaGoblin -- federated, autonomous media hosting
cf29e8a8 3# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
9a16e16f
SS
4#
5# This program is free software: you can redistribute it and/or modify
6# it under the terms of the GNU Affero General Public License as published by
7# the Free Software Foundation, either version 3 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU Affero General Public License for more details.
14#
15# You should have received a copy of the GNU Affero General Public License
16# along with this program. If not, see <http://www.gnu.org/licenses/>.
17#}
18{% extends "mediagoblin/base.html" %}
00c39256 19
38bf03c6
CAW
20{% from "mediagoblin/utils/object_gallery.html" import object_gallery %}
21
00c39256
BK
22{% block mediagoblin_head %}
23 <link rel="alternate" type="application/atom+xml"
24 href="{{ request.urlgen(
ae50c14f 25 'mediagoblin.user_pages.atom_feed',
00c39256
BK
26 user=user.username) }}">
27{% endblock mediagoblin_head %}
28
017d6ca3
CAW
29{% block title %}
30 {%- if user -%}
31 {%- trans username=user.username -%}
32 {{ username }}'s profile
33 {%- endtrans %} &mdash; {{ super() }}
34 {%- else -%}
35 {{ super() }}
36 {%- endif -%}
37{% endblock %}
38
39
9a16e16f 40{% block mediagoblin_content -%}
990d3b69
CAW
41 {# If no user... #}
42 {% if not user %}
8f4c9b81 43 <p>{% trans %}Sorry, no such user found.{% endtrans %}<p/>
990d3b69
CAW
44
45 {# User exists, but needs verification #}
46 {% elif user.status == "needs_email_verification" %}
47 {% if user == request.user %}
48 {# this should only be visible when you are this user #}
3ea6a305 49 <div class="form_box">
9cecbe4e 50 <h1>{% trans %}Email verification needed{% endtrans %}</h1>
990d3b69 51
990d3b69 52 <p>
58b79b15 53 {% trans -%}
fb91ef0f 54 Almost done! Your account still needs to be activated.
58b79b15
CAW
55 {%- endtrans %}
56 </p>
57 <p>
58 {% trans -%}
59 An email should arrive in a few moments with instructions on how to do so.
60 {%- endtrans %}
990d3b69 61 </p>
8f4c9b81 62 <p>{% trans %}In case it doesn't:{% endtrans %}</p>
990d3b69 63
3880c8f3 64 <a href="{{ request.urlgen('mediagoblin.auth.resend_verification') }}"
c6c08a2f 65 class="button_action_highlight">{% trans %}Resend verification email{% endtrans %}</a>
990d3b69
CAW
66 </div>
67 {% else %}
68 {# if the user is not you, but still needs to verify their email #}
3ea6a305 69 <div class="form_box">
9cecbe4e 70 <h1>{% trans %}Email verification needed{% endtrans %}</h1>
990d3b69
CAW
71
72 <p>
58b79b15 73 {% trans -%}
fb91ef0f 74 Someone has registered an account with this username, but it still has to be activated.
58b79b15 75 {%- endtrans %}
990d3b69
CAW
76 </p>
77
78 <p>
58b79b15
CAW
79 {% trans login_url=request.urlgen('mediagoblin.auth.login') -%}
80 If you are that person but you've lost your verification email, you can <a href="{{ login_url }}">log in</a> and resend it.
81 {%- endtrans %}
990d3b69
CAW
82 </p>
83 </div>
84 {% endif %}
85
86 {# Active(?) (or at least verified at some point) user, horray! #}
87 {% else %}
58b79b15
CAW
88 <h1>
89 {%- trans username=user.username %}{{ username }}'s profile{% endtrans -%}
90 </h1>
990d3b69 91
a24e5133 92 {% if not user.url and not user.bio %}
4a24500a 93 {% if request.user and (request.user._id == user._id) %}
3ea6a305 94 <div class="profile_sidebar empty_space">
293a7fe4
CAW
95 <p>
96 {% trans %}Here's a spot to tell others about yourself.{% endtrans %}
97 </p>
98 <a href="{{ request.urlgen('mediagoblin.edit.profile') }}?username={{
99 user.username }}"
13423daa 100 class="button_action">
293a7fe4
CAW
101 {%- trans %}Edit profile{% endtrans -%}
102 </a>
293a7fe4 103 {% else %}
3ea6a305 104 <div class="profile_sidebar empty_space">
293a7fe4
CAW
105 <p>
106 {% trans -%}
107 This user hasn't filled in their profile (yet).
108 {%- endtrans %}
109 </p>
293a7fe4 110 {% endif %}
3617ff4a 111 {% else %}
3ea6a305 112 <div class="profile_sidebar">
3617ff4a 113 {% include "mediagoblin/utils/profile.html" %}
f1cdd278
E
114 {% if request.user and
115 (request.user._id == user._id or request.user.is_admin) %}
3617ff4a
CAW
116 <a href="{{ request.urlgen('mediagoblin.edit.profile') }}?username={{
117 user.username }}">
118 {%- trans %}Edit profile{% endtrans -%}
119 </a>
120 {% endif %}
34b4090c
JS
121 {% endif %}
122
7646e695 123 {% if request.user and (request.user._id == user._id) %}
34b4090c
JS
124 <a href="{{ request.urlgen('mediagoblin.edit.account') }}">
125 {%- trans %}Change account settings{% endtrans -%}
126 </a>
7646e695
JS
127 {% endif %}
128 </div>
990d3b69 129
0ddea95e 130 {% if media_entries.count() %}
3ea6a305 131 <div class="profile_showcase">
0ddea95e
CAW
132 {{ object_gallery(request, media_entries, pagination,
133 pagination_base_url=user_gallery_url, col_number=3) }}
134 {% include "mediagoblin/utils/object_gallery.html" %}
135 <div class="clear"></div>
136 <p>
137 <a href="{{ user_gallery_url }}">
138 {% trans username=user.username -%}
139 View all of {{ username }}'s media{% endtrans -%}
140 </a>
141 </p>
142 {% set feed_url = request.urlgen(
143 'mediagoblin.user_pages.atom_feed',
144 user=user.username) %}
5b21ecf9 145 {% include "mediagoblin/utils/feed_link.html" %}
0ddea95e
CAW
146 </div>
147 {% else %}
762d4a0c 148 {% if request.user and (request.user._id == user._id) %}
3ea6a305 149 <div class="profile_showcase empty_space">
0ddea95e
CAW
150 <p>
151 {% trans -%}
152 This is where your media will appear, but you don't seem to have added anything yet.
153 {%- endtrans %}
154 </p>
13423daa 155 <a class="button_action"
0ddea95e
CAW
156 href="{{ request.urlgen('mediagoblin.submit.start') }}">
157 {%- trans %}Add media{% endtrans -%}
158 </a>
159 </div>
160 {% else %}
3ea6a305 161 <div class="profile_showcase empty_space">
0ddea95e
CAW
162 <p>
163 {% trans -%}
164 There doesn't seem to be any media here yet...
165 {%- endtrans %}
166 </p>
167 </div>
168 {% endif %}
169 {% endif %}
b1f11df0 170 <div class="clear"></div>
9a16e16f 171 {% endif %}
afa76074 172{% endblock %}