X-Git-Url: https://git.ozlabs.org/?p=patchwork;a=blobdiff_plain;f=templates%2Fpatchwork%2Fprofile.html;fp=templates%2Fpatchwork%2Fprofile.html;h=0000000000000000000000000000000000000000;hp=116d6d63bfdf575bb6f903b8832b1293327cea10;hb=ad2762cf775a8dde508de47164d6429f3fd724f1;hpb=f09e982f58384946111d4157fd2b7c2b31b78612 diff --git a/templates/patchwork/profile.html b/templates/patchwork/profile.html deleted file mode 100644 index 116d6d6..0000000 --- a/templates/patchwork/profile.html +++ /dev/null @@ -1,144 +0,0 @@ -{% extends "base.html" %} - -{% block title %}User Profile: {{ user.username }}{% endblock %} -{% block heading %}User Profile: {{ user.username }}{% endblock %} - - -{% block body %} - -

-{% if user.profile.maintainer_projects.count %} -Maintainer of -{% for project in user.profile.maintainer_projects.all %} -{{ project.linkname }}{% if not forloop.last %},{% endif %}{% endfor %}. -{% endif %} - -{% if user.profile.contributor_projects.count %} -Contributor to -{% for project in user.profile.contributor_projects.all %} -{{ project.linkname }}{% if not forloop.last %},{% endif %}{% endfor %}. -{% endif %} -

- -
-
-

Todo

-{% if user.profile.n_todo_patches %} -

Your todo - list contains {{ user.profile.n_todo_patches }} - patch{{ user.profile.n_todo_patches|pluralize:"es" }}.

-{% else %} -

Your todo list contains patches that have been delegated to you. You - have no items in your todo list at present.

-{% endif %} -
- -
-

Linked email addresses

-

The following email addresses are associated with this patchwork account. -Adding alternative addresses allows patchwork to group contributions that -you have made under different addresses.

-

The "notify?" column allows you to opt-in or -out of automated -patchwork notification emails. Setting it to "no" will disable automated -notifications for that address.

-

Adding a new email address will send a confirmation email to that -address.

- - - - - - -{% for email in linked_emails %} - - - - - -{% endfor %} - - - -
emailactionnotify?
{{ email.email }} - {% ifnotequal user.email email.email %} -
- {% csrf_token %} - -
- {% endifnotequal %} -
- {% if email.is_optout %} -
- No, - {% csrf_token %} - - -
- {% else %} -
- Yes, - {% csrf_token %} - - -
- {% endif %} -
-
- {% csrf_token %} - {{ linkform.email }} - -
-
-
-
- -
- -
-

Bundles

- -{% if bundles %} -

You have the following bundle{{ bundle|length|pluralize }}:

- -

Visit the bundles - page to manage your bundles.

-{% else %} -

You have no bundles.

-{% endif %} -
- - -
-

Settings

- -
- {% csrf_token %} - -{{ profileform }} - - - -
- - -
-
-
- -
-

Authentication

-Change password -
- -
- -

- -{% endblock %}