Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace project length with time commitment #2190

Merged
merged 1 commit into from
Sep 11, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/dashboard/templates/bounty/details.html
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ <h4 id="title" class="font-title"></h4>
</div>

<div>
<span class="bounty-info-heading">{% trans "Project Length" %}</span>
<span class="bounty-info-heading">{% trans "Time Commitment" %}</span>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We'll want to run make autotranslate or makemessages/compilemessages via manage.py following changes like this. @arun1595 @thelostone-mc

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

my bad ! totally slipped my mind

<span class="bounty-info-text" id="project_length"></span>
</div>

Expand Down
2 changes: 1 addition & 1 deletion app/dashboard/templates/shared/issue_details.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ <h5 class="font-subheader">{% trans "Details" %}</h5>
</div>
<div class="form__select2 form__group-item">
<select class="js-select2" name="project_length">
<option value="Unknown">{% trans "Project Length" %}</option>
<option value="Unknown">{% trans "Time Commitment" %}</option>
<option>{% trans "Hours" %}</option>
<option>{% trans "Days" %}</option>
<option>{% trans "Weeks" %}</option>
Expand Down
2 changes: 1 addition & 1 deletion app/dashboard/templates/shared/sidebar_search.html
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@
</div>

<div class="col">
<div class="col-12 subheading font-body accordion">{% trans "Project Length" %}</div>
<div class="col-12 subheading font-body accordion">{% trans "Time Commitment" %}</div>
<div class="col-12 options panel">
<div class="checkbox_container">
<input name="project_length" id="hours" type="checkbox" value="hours" val-ui='Hours-Long' />
Expand Down
2 changes: 1 addition & 1 deletion app/retail/templates/emails/bounty.html
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
</p>
<p>
<b>{% trans "Specs:" %}</b><br>
{% trans "Project Length" %}: {% if bounty.project_length %}{{ bounty.project_length }}{%else%}Not specified{%endif%}
{% trans "Time Commitment" %}: {% if bounty.project_length %}{{ bounty.project_length }}{%else%}Not specified{%endif%}
<br>
{% trans "Type:" %} {% if bounty.bounty_type %}{{ bounty.bounty_type }}{%else%}Not specified{%endif%}
<br>
Expand Down