summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Mendes <brunosouza@alunos.utfpr.edu.br>2016-10-31 11:16:34 -0200
committerStephen Finucane <stephen@that.guru>2016-10-31 17:08:01 +0000
commit7002d227dd5f3b53a13b1d70add14b999536ec8e (patch)
treee3ee489eb81fddb4919304f16a70cb8a89a4bd51
parent0d25296e6a0e7aa85bdd25b4ef0db0e7498c215b (diff)
downloadpatchwork-7002d227dd5f3b53a13b1d70add14b999536ec8e.tar
patchwork-7002d227dd5f3b53a13b1d70add14b999536ec8e.tar.gz
Remove 'htdocs/images'
Signed-off-by: Bruno Mendes <brunosouza@alunos.utfpr.edu.br> Reviewed-by: Stephen Finucane <stephen@that.guru> Closes: #40
-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>