moved images to img folder

This commit is contained in:
artus40
2017-09-21 17:51:44 +02:00
parent 1dfbbc7506
commit 2478e1b650
16 changed files with 16 additions and 16 deletions

View File

Before

Width:  |  Height:  |  Size: 275 B

After

Width:  |  Height:  |  Size: 275 B

View File

Before

Width:  |  Height:  |  Size: 311 B

After

Width:  |  Height:  |  Size: 311 B

View File

Before

Width:  |  Height:  |  Size: 311 B

After

Width:  |  Height:  |  Size: 311 B

View File

Before

Width:  |  Height:  |  Size: 374 B

After

Width:  |  Height:  |  Size: 374 B

View File

Before

Width:  |  Height:  |  Size: 356 B

After

Width:  |  Height:  |  Size: 356 B

View File

Before

Width:  |  Height:  |  Size: 308 B

After

Width:  |  Height:  |  Size: 308 B

View File

Before

Width:  |  Height:  |  Size: 330 B

After

Width:  |  Height:  |  Size: 330 B

View File

Before

Width:  |  Height:  |  Size: 297 B

After

Width:  |  Height:  |  Size: 297 B

View File

Before

Width:  |  Height:  |  Size: 385 B

After

Width:  |  Height:  |  Size: 385 B

View File

Before

Width:  |  Height:  |  Size: 319 B

After

Width:  |  Height:  |  Size: 319 B

View File

Before

Width:  |  Height:  |  Size: 345 B

After

Width:  |  Height:  |  Size: 345 B

View File

@@ -11,7 +11,7 @@
<!-- Navbar //--> <!-- Navbar //-->
<nav class="navbar sticky-top navbar-expand-lg navbar-dark bg-dark justify-content-between"> <nav class="navbar sticky-top navbar-expand-lg navbar-dark bg-dark justify-content-between">
<a class="navbar-brand mb-0 col-2" href="{% url "index" %}"> <a class="navbar-brand mb-0 col-2" href="{% url "index" %}">
<img src="{% static "activity.svg" %}" height="30" width="30"/> <img src="{% static "img/activity.svg" %}" height="30" width="30"/>
Cresus Cresus
</a> </a>
<span class="navbar-text col-8 text-center">{% block page_title %}Titre{% endblock %}</span> <span class="navbar-text col-8 text-center">{% block page_title %}Titre{% endblock %}</span>
@@ -22,15 +22,15 @@
<div class="collapse navbar-collapse col-2" id="navbarMenu"> <div class="collapse navbar-collapse col-2" id="navbarMenu">
<div class="btn-group btn-group-sm mx-2" role="group" aria-label="Etiquettes"> <div class="btn-group btn-group-sm mx-2" role="group" aria-label="Etiquettes">
<a class="btn btn-dark" href="{% url "etiquette-add" %}"> <a class="btn btn-dark" href="{% url "etiquette-add" %}">
<img src="{% static "plus.svg" %}" height="18" width="18" /> <img src="{% static "img/plus.svg" %}" height="18" width="18" />
</a> </a>
<a href="{% url "etiquette-list" %}" class="btn btn-dark px-2"> <a href="{% url "etiquette-list" %}" class="btn btn-dark px-2">
<img src="{% static "tag.svg" %}" /> <img src="{% static "img/tag.svg" %}" />
</a> </a>
</div> </div>
<div class="btn-group btn-group-sm mx-2" role="group" aria-label="Enregistrements récurrents"> <div class="btn-group btn-group-sm mx-2" role="group" aria-label="Enregistrements récurrents">
<a class="btn btn-dark" href="{% url "recursif-add" %}"><img src="{% static "plus.svg" %}" height="18" width="18" /></a> <a class="btn btn-dark" href="{% url "recursif-add" %}"><img src="{% static "img/plus.svg" %}" height="18" width="18" /></a>
<a class="btn btn-dark" href="{% url "recursif-list" %}"><img src="{% static "repeat.svg" %}" /></a> <a class="btn btn-dark" href="{% url "recursif-list" %}"><img src="{% static "img/repeat.svg" %}" /></a>
</div> </div> </div> </div>
</nav> </nav>
<div class="container"> <div class="container">

View File

@@ -13,7 +13,7 @@
<label class="control-label" for="id_montant">Montant</label> <label class="control-label" for="id_montant">Montant</label>
<div class="input-group"> <div class="input-group">
<span class="input-group-addon"> <span class="input-group-addon">
<img src="{% static "minus-square.svg"%}" />{{ form.est_negatif}} <img src="{% static "img/minus-square.svg"%}" />{{ form.est_negatif}}
</span> </span>
<input class="form-control" type="number" id="id_montant" name="montant" required /> <input class="form-control" type="number" id="id_montant" name="montant" required />
</div> </div>
@@ -31,7 +31,7 @@
</div> </div>
</div> </div>
<div class="form-row mt-3"> <div class="form-row mt-3">
<button type="submit" class="btn btn-block btn-dark"><img src="{% static "plus.svg" %}" /> Ajouter</button> <button type="submit" class="btn btn-block btn-dark"><img src="{% static "img/plus.svg" %}" /> Ajouter</button>
</div> </div>
</form> </form>
{% endblock %} {% endblock %}

View File

@@ -14,8 +14,8 @@
<tr> <tr>
<td>{{ etiquette }}</td> <td>{{ etiquette }}</td>
<td> <td>
<a href="{% url "etiquette-update" pk=etiquette.pk %}"><img src="{% static "edit.svg" %}" /><span class="sr-only">Éditer</span></a> <a href="{% url "etiquette-update" pk=etiquette.pk %}"><img src="{% static "img/edit.svg" %}" /><span class="sr-only">Éditer</span></a>
<a href="{% url "etiquette-delete" pk=etiquette.pk %}"><img src="{% static "delete.svg" %}" /><span class="sr-only">Supprimer</span></a> <a href="{% url "etiquette-delete" pk=etiquette.pk %}"><img src="{% static "img/delete.svg" %}" /><span class="sr-only">Supprimer</span></a>
</td> </td>
</tr> </tr>
{% endfor %} {% endfor %}

View File

@@ -1,11 +1,11 @@
{% extends "core/base.html" %} {% extends "core/base.html" %}
{% load bootstrap4 staticfiles %} {% load bootstrap4 staticfiles %}
{% block page_title %} {% block page_title %}
<a href="{{ prev_month_url }}" class="btn btn-dark btn-sm"><img src="{% static "chevrons-left.svg" %}" /></a> <a href="{{ prev_month_url }}" class="btn btn-dark btn-sm"><img src="{% static "img/chevrons-left.svg" %}" /></a>
Comptes de {{mois}} {{annee}} Comptes de {{mois}} {{annee}}
<a href="{% url "add"%}?year={{year}}&month={{month}}" class="btn btn-dark btn-sm m-0"><img src="{% static "plus.svg" %}" /></a> <a href="{% url "add"%}?year={{year}}&month={{month}}" class="btn btn-dark btn-sm m-0"><img src="{% static "img/plus.svg" %}" /></a>
{% if next_month_url %} {% if next_month_url %}
<a href="{{ next_month_url}}" class="btn btn-dark btn-sm"><img src="{% static "chevrons-right.svg" %}" /></a> <a href="{{ next_month_url}}" class="btn btn-dark btn-sm"><img src="{% static "img/chevrons-right.svg" %}" /></a>
{% endif %} {% endif %}
{% endblock %} {% endblock %}
{% block body_content %} {% block body_content %}
@@ -33,8 +33,8 @@
<strong>{{ d.montant }}</strong> <strong>{{ d.montant }}</strong>
</td> </td>
<td> <td>
<a href="{% url "update" pk=d.pk %}"><img src="{% static "edit.svg" %}" /></a> <a href="{% url "update" pk=d.pk %}"><img src="{% static "img/edit.svg" %}" /></a>
<a href="{% url "delete" pk=d.pk %}"><img src="{% static "delete.svg" %}" /></a> <a href="{% url "delete" pk=d.pk %}"><img src="{% static "img/delete.svg" %}" /></a>
</td> </td>
</tr> </tr>
{% endfor %} {% endfor %}

View File

@@ -20,8 +20,8 @@
<td>{{ enr_rec.description }}</td> <td>{{ enr_rec.description }}</td>
<td>{{ enr_rec.etiquette }}</td> <td>{{ enr_rec.etiquette }}</td>
<td>{{ enr_rec.montant }}</td> <td>{{ enr_rec.montant }}</td>
<td><a href="{% url "recursif-update" pk=enr_rec.pk %}"><img src="{% static "edit.svg" %}" /><span class="sr-only">Éditer</span></a> <td><a href="{% url "recursif-update" pk=enr_rec.pk %}"><img src="{% static "img/edit.svg" %}" /><span class="sr-only">Éditer</span></a>
<a href="{% url "recursif-delete" pk=enr_rec.pk %}"><img src="{% static "delete.svg" %}" /><span class="sr-only">Supprimer</span></a></td> <a href="{% url "recursif-delete" pk=enr_rec.pk %}"><img src="{% static "img/delete.svg" %}" /><span class="sr-only">Supprimer</span></a></td>
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>