Parcourir la source

changed the colour of edit buttons

joel
Simon Bowie il y a 3 ans
Parent
révision
54e980b8c7
3 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. +1
    -1
      web/app/templates/examples.html
  2. +1
    -1
      web/app/templates/practices.html
  3. +1
    -1
      web/app/templates/tool.html

+ 1
- 1
web/app/templates/examples.html Voir le fichier

@@ -29,7 +29,7 @@
<span class="badge bg-secondary">{{ example['created'].strftime("%Y-%m-%d %H:%M") }} UTC</span>
{% if current_user.is_authenticated %}
<a href="{{ url_for('example.edit_example', example_id=example['id']) }}">
<span class="badge bg-warning">Edit</span>
<span class="badge bg-dark">Edit</span>
</a>
{% endif %}
</div>

+ 1
- 1
web/app/templates/practices.html Voir le fichier

@@ -29,7 +29,7 @@
<span class="badge bg-secondary">{{ practice['created'].strftime("%Y-%m-%d %H:%M") }} UTC</span>
{% if current_user.is_authenticated %}
<a href="{{ url_for('practice.edit_practice', practice_id=practice['id']) }}">
<span class="badge bg-warning">Edit</span>
<span class="badge bg-dark">Edit</span>
</a>
{% endif %}
</div>

+ 1
- 1
web/app/templates/tool.html Voir le fichier

@@ -9,7 +9,7 @@
{% if current_user.is_authenticated %}
<div class="row text-center py-3">
<a href="{{ url_for('tool.edit_tool', tool_id=tool['id']) }}">
<span class="badge bg-warning">Edit</span>
<span class="badge bg-dark">Edit</span>
</a>
</div>
{% endif %}

Chargement…
Annuler
Enregistrer