aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Mendes <brunosouza@alunos.utfpr.edu.br>2016-10-31 11:16:34 -0200
committerBruno Mendes <brunosouza@alunos.utfpr.edu.br>2016-10-31 11:16:34 -0200
commitd5c5025298ebc6e2c3689b6928721b5988c44688 (patch)
treed9e00a21d3b60107d2e5fe558d5a8aa520cb8f67
parenta139fd6a8579115774dc9d8c3276cc3d7a0c2e1d (diff)
downloadpatchwork-d5c5025298ebc6e2c3689b6928721b5988c44688.tar
patchwork-d5c5025298ebc6e2c3689b6928721b5988c44688.tar.gz
Remove 'htdocs/images'
-rw-r--r--htdocs/images/16-em-cross.pngbin469 -> 0 bytes
-rw-r--r--htdocs/images/16-em-down.pngbin400 -> 0 bytes
-rw-r--r--patchwork/templates/patchwork/bundles.html9
3 files changed, 4 insertions, 5 deletions
diff --git a/htdocs/images/16-em-cross.png b/htdocs/images/16-em-cross.png
deleted file mode 100644
index 466e3bb..0000000
--- a/htdocs/images/16-em-cross.png
+++ /dev/null
Binary files differ
diff --git a/htdocs/images/16-em-down.png b/htdocs/images/16-em-down.png
deleted file mode 100644
index 50ac318..0000000
--- a/htdocs/images/16-em-down.png
+++ /dev/null
Binary files differ
diff --git a/patchwork/templates/patchwork/bundles.html b/patchwork/templates/patchwork/bundles.html
index 45bdec5..83e1bd0 100644
--- a/patchwork/templates/patchwork/bundles.html
+++ b/patchwork/templates/patchwork/bundles.html
@@ -30,16 +30,15 @@
<td style="text-align: right">{{ bundle.patches.count }}</td>
<td style="text-align: center;"><a
href="{% url 'bundle-mbox' username=bundle.owner.username bundlename=bundle.name %}"
- ><img src="{% static "images/16-em-down.png" %}" width="16" height="16" alt="download"
- title="download"/></a></td>
+ ><span class="glyphicon glyphicon-download-alt"></span></a></td>
<td style="text-align: center;">
<form method="post"
onsubmit="return confirm_delete('bundle', '{{bundle.name|escapejs}}');">
{% csrf_token %}
{{ bundle.delete_form.as_p }}
- <input type="image"
- src="{% static "images/16-em-cross.png" %}" width="16" height="16" alt="delete"
- title="delete" border="0" style="border: none;"/>
+ <button type="submit" style="background: transparent; border: 0px; padding: 0; outline: 0;">
+ <span class="glyphicon glyphicon-remove"></span>
+ </button>
</form>
</td>