Skip to content

Commit

Permalink
base_userdashboard: correct typo fixes #35
Browse files Browse the repository at this point in the history
  • Loading branch information
philli-m authored and fuzzylogic2000 committed Jan 25, 2021
1 parent 5303aa0 commit 6652e60
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ <h3>{% trans 'Initiator Organisations' %}</h3>
<div>
<a class="btn btn--link text-decoration-none text-muted" href="{% url 'a4dashboard:project-list' organisation_slug=organisation.slug %}">
{% if organisation.logo %}
<img src="{% thumbnail organisation.logo '0x40' %}" alt="{{ orgnaisation.name }}" />
<img src="{% thumbnail organisation.logo '0x40' %}" alt="{{ organisation.name }}" />
{% else %}
<i class="fas fa-edit font--lg pt-1" aria-label="{{ orgnaisation.name }} {% trans 'Home' %}"></i>
<i class="fas fa-edit font--lg pt-1" aria-label="{{ organisation.name }} {% trans 'Home' %}"></i>
{% endif %}
&nbsp{{ organisation.name }}
</a>
Expand Down Expand Up @@ -120,9 +120,9 @@ <h3>{% trans 'Organisations' %}</h3>
{% for organisation in view.organisations %}
<a class="btn btn--link text-decoration-none text-muted" href="{% url 'organisation' organisation_slug=organisation.slug %}">
{% if organisation.logo %}
<img src="{% thumbnail organisation.logo '0x40' %}" alt="{{ orgnaisation.name }}" />
<img src="{% thumbnail organisation.logo '0x40' %}" alt="{{ organisation.name }}" />
{% else %}
<i class="fas fa-home font--lg pt-1" aria-label="{{ orgnaisation.name }} {% trans 'Home' %}"></i>
<i class="fas fa-home font--lg pt-1" aria-label="{{ organisation.name }} {% trans 'Home' %}"></i>
{% endif %}
&nbsp {{ organisation.name }}
</a>
Expand Down

0 comments on commit 6652e60

Please sign in to comment.