Skip to content
Snippets Groups Projects
Verified Commit 0b188a02 authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Use button instead of link.

parent 72418496
No related branches found
No related tags found
1 merge request!39Add function to create group. Closes #66.
{% extends "core/base.html" %}
{% load bootstrap4 i18n %}
{% load bootstrap4 fontawesome i18n %}
{% load render_table from django_tables2 %}
{% block page_title %}{% blocktrans %}Groups{% endblocktrans %}{% endblock %}
......@@ -8,9 +8,11 @@
<h2>
{% blocktrans %}List of all groups{% endblocktrans %}
</h2>
<p>
<a href="{% url 'create_group' %}">{% blocktrans %}Create new group{% endblocktrans %}</a>
</p>
<div class="btn-group" role="group" aria-lable="Group actions">
<a href="{% url 'create_group' %}" class="btn btn-secondary">
{% fa 'plus' %}
</a>
</div>
{% render_table groups_table %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment