Skip to content

Commit

Permalink
Rename variable
Browse files Browse the repository at this point in the history
  • Loading branch information
humitos committed Jun 10, 2021
1 parent c60c025 commit 1ad5220
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion readthedocs/templates/account/signup.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ <h1>{% trans "Sign Up" %}</h1>
<small>{% blocktrans %}Already have an account? Then please <a href="{{ login_url }}">sign in</a>.{% endblocktrans %}</small>
</p>

{% if signup_providers %}
{% if allowed_providers %}
<p>
{% if organization %}
{% blocktrans trimmed with organization.name as organization_name %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
{% endfor %}
{% endif %}
{% if provider.id != 'bitbucket' %}
{% if signup_providers and provider.id in signup_providers or not signup_providers %}
{% if allowed_providers and provider.id in allowed_providers or not allowed_providers %}
<li>
<a title="{{ provider.name }}"
class="socialaccount-provider {{ provider.id }} button"
Expand Down

0 comments on commit 1ad5220

Please sign in to comment.