{% trans 'The following e-mail addresses are associated with your account:' %}
28 |
29 |
65 |
66 | {% else %}
67 |
68 |
{% trans 'Warning:'%} {% trans "You currently do not have any e-mail address set up. You should really add an e-mail address so you can receive notifications, reset your password, etc." %}
69 |
70 | {% endif %}
71 |
72 |
73 |
{% trans "Add E-mail Address" %}
74 |
75 |
80 |
81 | {% endblock %}
82 |
83 |
84 |
85 | {% block extra_body %}
86 |
99 | {% endblock %}
100 | {% endcomment %}
101 |
--------------------------------------------------------------------------------
/label_buddy/templates/account/email/email_confirmation_message.txt:
--------------------------------------------------------------------------------
1 | {% load account %}{% user_display user as user_display %}{% load i18n %}{% autoescape off %}{% blocktrans with site_name=current_site.name site_domain=current_site.domain %}Hello from {{ site_name }}!
2 |
3 | User {{ user_display }} has given your as an e-mail address to connect their account.
4 |
5 | To confirm this is correct, go to {{ activate_url }}
6 | {% endblocktrans %}{% endautoescape %}
7 | {% blocktrans with site_name=current_site.name site_domain=current_site.domain %}Thank you from {{ site_name }}!
8 | {{ site_domain }}{% endblocktrans %}
--------------------------------------------------------------------------------
/label_buddy/templates/account/email/email_confirmation_signup_message.txt:
--------------------------------------------------------------------------------
1 | {% include "account/email/email_confirmation_message.txt" %}
2 |
--------------------------------------------------------------------------------
/label_buddy/templates/account/email/email_confirmation_signup_subject.txt:
--------------------------------------------------------------------------------
1 | {% load i18n %}
2 | {% autoescape off %}
3 | {% blocktrans %}Confirm Your E-mail{% endblocktrans %}
4 | {% endautoescape %}
5 |
--------------------------------------------------------------------------------
/label_buddy/templates/account/email/email_confirmation_subject.txt:
--------------------------------------------------------------------------------
1 | Confirm Your Email.
--------------------------------------------------------------------------------
/label_buddy/templates/account/email/password_reset_key_message.txt:
--------------------------------------------------------------------------------
1 | {% load i18n %}{% blocktrans with site_name=current_site.name site_domain=current_site.domain %}Hello from {{ site_name }}!
2 |
3 | You requested a password reset for your user account.
4 | Click the link below to reset your password.{% endblocktrans %}
5 |
6 | {{ password_reset_url }}
7 |
8 | {% if username %}{% blocktrans %}In case you forgot, your username is {{ username }}.{% endblocktrans %}
9 | {% endif %}
--------------------------------------------------------------------------------
/label_buddy/templates/account/email/password_reset_key_subject.txt:
--------------------------------------------------------------------------------
1 | {% load i18n %}
2 | {% autoescape off %}
3 | {% blocktrans %}Password Reset E-mail{% endblocktrans %}
4 | {% endautoescape %}
5 |
--------------------------------------------------------------------------------
/label_buddy/templates/account/email_confirm.html:
--------------------------------------------------------------------------------
1 | {% extends "base.html" %}
2 |
3 | {% load i18n %}
4 |
5 | {% load account %}
6 |
7 | {% block title %} ◦ Confirm E-mail Address {% endblock %}
8 |
9 |
10 | {% block content %}
11 | {{ block.super }}
12 |
{% blocktrans with confirmation.email_address.email as email %} Please confirm that {{ email }} is an e-mail address for user {{ user_display }}.{% endblocktrans %}
{% blocktrans %}This e-mail confirmation link expired or is invalid. Please issue a new e-mail confirmation request. You will be redirected to login page in 5 seconds.{% endblocktrans %}
{% if token_fail %}{% trans "Bad Token" %}{% else %}{% trans "Change Password" %}{% endif %}
15 |
16 | {% if token_fail %}
17 | {% url 'account_reset_password' as passwd_reset_url %}
18 |
{% blocktrans %}The password reset link was invalid, possibly because it has already been used. Please request a new password reset.{% endblocktrans %}
19 | {% else %}
20 | {% if form %}
21 |
26 | {% else %}
27 |
{% blocktrans %}We have sent an e-mail to you for verification. Follow the link provided to finalize the signup process. Please contact us if you do not receive it within a few minutes.{% endblocktrans %}
{% blocktrans %}This part of the site requires us to verify that
15 | you are who you claim to be. For this purpose, we require that you
16 | verify ownership of your e-mail address. {% endblocktrans %}
17 |
18 |
{% blocktrans %}We have sent an e-mail to you for
19 | verification. Please click on the link inside this e-mail. Please
20 | contact us if you do not receive it within a few minutes.{% endblocktrans %}
13 | Select a label and drug on the waveform in order to create a region. The region created will be labeled with
14 | the selected label and you will be able to see the region's starting and ending point to the left of your screen.
15 | You can delete or play selected regions by clicking on them and after clicking the play/delete buttons which appear under
16 | the waveform.
17 | Save your annotation by clicking the Save button.
18 | View the comment (if review exists) of the reviewer by clicking the Review button
19 | Delete your annotation (if exists) by clicking the Delete button.
20 | Click Next to start annotating the next unlabeled task.
21 |