Skip to content

Commit

Permalink
Fix path to clear icon; rename icons to have consistent names; correc…
Browse files Browse the repository at this point in the history
…t image tag alt attribute (#51)
  • Loading branch information
Alex Zagoro authored and bartTC committed Apr 9, 2018
1 parent e40e2ee commit 0de3e74
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
{{ hidden_input }}

<a href="{{ related_url }}{{ url }}" data-name="{{ name }}" data-app="{{ app_name }}" data-model="{{ model_name }}" class="dynamic_raw_id-related-lookup" id="lookup_id_{{ name }}" >
<img src="{% static "dynamic_raw_id/img/selector-search.gif" %}" alt="Lookup" height="16" width="16">
<img src="{% static "dynamic_raw_id/img/icon-lookup.gif" %}" alt="Lookup" height="16" width="16">
</a>
<a data-name="developers" data-app="{{ app_name }}" data-model="{{ model_name }}" class="dynamic_raw_id-clear-field">
<img src="{% static "img/icon_deletelink.gif" %}" alt="Lookup" height="10" width="10">
<img src="{% static "dynamic_raw_id/img/icon-clear.gif" %}" alt="Clear" height="10" width="10">
</a>
<span class="dynamic_raw_id_label" id="{{ name }}_dynamic_raw_id_label"></span>
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
{% include 'django/forms/widgets/input.html' %}

<a href="{{ related_url }}{{ url }}" data-name="{{ name }}" data-app="{{ app_name }}" data-model="{{ model_name }}" class="dynamic_raw_id-related-lookup" id="lookup_id_{{ name }}" >
<img src="{% static "dynamic_raw_id/img/selector-search.gif" %}" alt="Lookup" height="16" width="16">
<img src="{% static "dynamic_raw_id/img/icon-lookup.gif" %}" alt="Lookup" height="16" width="16">
</a>
<a data-name="developers" data-app="{{ app_name }}" data-model="{{ model_name }}" class="dynamic_raw_id-clear-field">
<img src="{% static "dynamic_raw_id/img/icon_deletelink.gif" %}" alt="Lookup" height="10" width="10">
<img src="{% static "dynamic_raw_id/img/icon-clear.gif" %}" alt="Clear" height="10" width="10">
</a>
<span class="dynamic_raw_id_label" id="{{ name }}_dynamic_raw_id_label"></span>

0 comments on commit 0de3e74

Please sign in to comment.