diff options
author | Aleksej <deletesoftware@gmail.com> | 2014-05-05 18:05:34 +0400 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2014-06-13 10:37:47 -0500 |
commit | 88542a8c1f773a07fa5809b9c266614c68133f9b (patch) | |
tree | a98b5b5adc4f8fbfd3bc7d312225b6f133783f6d | |
parent | 9da03b739f19d43f195e6216f3469808fa67a191 (diff) | |
download | mediagoblin-88542a8c1f773a07fa5809b9c266614c68133f9b.tar.lz mediagoblin-88542a8c1f773a07fa5809b9c266614c68133f9b.tar.xz mediagoblin-88542a8c1f773a07fa5809b9c266614c68133f9b.zip |
Issue 839: move attribution from some icons' alt into title.
-rw-r--r-- | mediagoblin/templates/mediagoblin/moderation/report.html | 6 | ||||
-rw-r--r-- | mediagoblin/templates/mediagoblin/moderation/report_panel.html | 9 |
2 files changed, 10 insertions, 5 deletions
diff --git a/mediagoblin/templates/mediagoblin/moderation/report.html b/mediagoblin/templates/mediagoblin/moderation/report.html index 5bff0ffa..6367f409 100644 --- a/mediagoblin/templates/mediagoblin/moderation/report.html +++ b/mediagoblin/templates/mediagoblin/moderation/report.html @@ -105,7 +105,8 @@ <div class="report_author"> <img src="{{ request.staticdirect( '/images/icon_clipboard_alert.png') }}" - alt="Under a GNU LGPL v.3 or Creative Commons BY-SA 3.0 license. + alt="" + title="Under a GNU LGPL v.3 or Creative Commons BY-SA 3.0 license. Distributed by the GNOME project http://www.gnome.org" /> <a href="{{ request.urlgen('mediagoblin.moderation.users_detail', user=report.reporter.username) }}" @@ -142,7 +143,8 @@ </script> {% elif report.is_archived_report() %} <h2><img src="{{ request.staticdirect('/images/icon_clipboard.png') }}" - alt="Under a GNU LGPL v.3 or Creative Commons BY-SA 3.0 license. + alt="" + title="Under a GNU LGPL v.3 or Creative Commons BY-SA 3.0 license. Distributed by the GNOME project http://www.gnome.org" /> {% trans %}Status{% endtrans %}: </h2> diff --git a/mediagoblin/templates/mediagoblin/moderation/report_panel.html b/mediagoblin/templates/mediagoblin/moderation/report_panel.html index 95b6be80..39ca90f5 100644 --- a/mediagoblin/templates/mediagoblin/moderation/report_panel.html +++ b/mediagoblin/templates/mediagoblin/moderation/report_panel.html @@ -86,7 +86,8 @@ curr_page !=p %} <img src="{{ request.staticdirect( '/images/icon_clipboard_alert.png') }}" - alt="Under a GNU LGPL v.3 or Creative Commons BY-SA 3.0 license. + alt="" + title="Under a GNU LGPL v.3 or Creative Commons BY-SA 3.0 license. Distributed by the GNOME project http://www.gnome.org" /> <a href="{{ request.urlgen( 'mediagoblin.moderation.reports_detail', @@ -101,7 +102,8 @@ curr_page !=p %} <img src="{{ request.staticdirect( '/images/icon_clipboard_alert.png') }}" - alt="Under a GNU LGPL v.3 or Creative Commons BY-SA 3.0 license. + alt="" + title="Under a GNU LGPL v.3 or Creative Commons BY-SA 3.0 license. Distributed by the GNOME project http://www.gnome.org" /> <a href="{{ request.urlgen( 'mediagoblin.moderation.reports_detail', @@ -178,7 +180,8 @@ curr_page !=p %} <td> <img src="{{ request.staticdirect('/images/icon_clipboard.png') }}" - alt="Under a GNU LGPL v.3 or Creative Commons BY-SA 3.0 license. + alt="" + title="Under a GNU LGPL v.3 or Creative Commons BY-SA 3.0 license. Distributed by the GNOME project http://www.gnome.org" /> <a href="{{ request.urlgen('mediagoblin.moderation.reports_detail', report_id=report.id) }}"> |