redesigned buttons and activités

This commit is contained in:
2022-05-07 11:34:06 +02:00
parent 72133e4ca4
commit f4923785fd
8 changed files with 18 additions and 20 deletions

View File

@@ -4,10 +4,12 @@
{% if request.authenticated_userid %}
<p>
<a href="{{ request.route_url('topic', topic=entry.topic_id) }}">[ Retour ]</a>
<a href="{{ request.route_url('blog_edit', topic=entry.topic_id, id=entry.id) }}">[ Modifier ]</a>
<a href="{{ request.route_url('topic', topic=entry.topic_id) }}" class="btn btn-default" role="button">
<span class="glyphicon glyphicon-chevron-left"></span> Retour</a>
<a href="{{ request.route_url('blog_edit', topic=entry.topic_id, id=entry.id) }}" class="btn btn-primary" role="button">
<span class="glyphicon glyphicon-pencil"></span> Modifier</a>
</p>
{% endif %}
<hr/>