add clarification to delete prompt, change more options dropdown angle to question mark

This commit is contained in:
Xevion
2020-11-06 07:58:05 -06:00
parent 5692836bec
commit 8da2e64963

View File

@@ -17,18 +17,23 @@
<p class="card-header-title"> <p class="card-header-title">
Confirm Deletion Confirm Deletion
</p> </p>
<a href="#" class="card-header-icon" aria-label="more options"> <span class="card-header-icon has-text-primary">
<span class="icon"> <span class="icon">
<i class="fas fa-angle-down" aria-hidden="true"></i> <i class="fas fa-question" aria-hidden="true"></i>
</span>
</span> </span>
</a>
</header> </header>
<div class="card-content"> <div class="card-content">
<div class="content"> <div class="content">
<p> <p>
Are you sure you want to remove this directory from the file server? Are you sure you want to remove this directory from the file server?
{% load humanize %} {% load humanize %}
<a href="{% url 'browse' directory.id %}"><code>{{ directory.path }}</code></a> contains <b class="has-text-primary">{{ num_files|intcomma }}</b> files. <a href="{% url 'browse' directory.id %}"><code>{{ directory.path }}</code></a> contains <b
class="has-text-primary">{{ num_files|intcomma }}</b> files.
<p class="help my-0">
Note: This does <b>not</b> delete any of your files. This will only clear the thumbnail cache
and database of associated files.
</p>
</p> </p>
</div> </div>
</div> </div>