collection browsing: rename view/template user_collections -> collection_list
[mediagoblin.git] / mediagoblin / templates / mediagoblin / edit / edit_profile.html
index 274c80922309f16ab700e242b9af7db33d165665..163fe186995de016e045728bd3cee1d2c9403a95 100644 (file)
@@ -1,6 +1,6 @@
 {#
 # GNU MediaGoblin -- federated, autonomous media hosting
-# Copyright (C) 2011 Free Software Foundation, Inc
+# Copyright (C) 2011, 2012 MediaGoblin contributors.  See AUTHORS.
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as published by
 
 {% import "/mediagoblin/utils/wtforms.html" as wtforms_util %}
 
+{% block title -%}
+  {% trans username=user.username -%}
+    Editing {{ username }}'s profile
+  {%- endtrans %} — {{ super() }}
+{%- endblock %}
+
 {% block mediagoblin_content %}
 
   <form action="{{ request.urlgen('mediagoblin.edit.profile',
-                               user=user.username) }}"
-        method="POST" enctype="multipart/form-data">
-    <div class="grid_2 alpha">&nbsp;</div>
-    <div class="grid_6 prefix_1 suffix_1 edit_box form_box">
-      <h1>Editing {{ user['username'] }}'s profile</h1>
+        user=user.username) }}" method="POST" enctype="multipart/form-data">
+    <div class="form_box edit_box">
+      <h1>
+        {%- trans username=user.username -%}
+          Editing {{ username }}'s profile
+        {%- endtrans %}
+      </h1>
       {{ wtforms_util.render_divs(form) }}
       <div class="form_submit_buttons">
-        <input type="submit" value="submit" class="button" />
+        <input type="submit" value="{% trans %}Save changes{% endtrans %}" class="button_form" />
+       {{ csrf_token }}
       </div>
     </div>
-    <div class="grid_2 omega">&nbsp;</div>
   </form>
 {% endblock %}