Skip to content
Snippets Groups Projects
Commit f88ca61b authored by Pierre-antoine Comby's avatar Pierre-antoine Comby
Browse files

use django_tables2

parent a0c32890
No related branches found
No related tags found
No related merge requests found
......@@ -41,6 +41,7 @@ INSTALLED_APPS = [
'guardian',
'reversion',
'crispy_forms',
'django_tables2',
# Django contrib
'django.contrib.admin',
'django.contrib.admindocs',
......@@ -83,6 +84,7 @@ TEMPLATES = [
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
'django.template.context_processors.request',
],
},
},
......@@ -159,7 +161,7 @@ STATICFILES_DIRS = [
os.path.join(BASE_DIR,'static')]
CRISPY_TEMPLATE_PACK = 'bootstrap4'
DJANGO_TABLES2_TEMPLATE = 'django_tables2/bootstrap4.html'
# URL prefix for static files.
# Example: "http://example.com/static/", "http://static.example.com/"
STATIC_URL = '/static/'
......
......@@ -8,6 +8,7 @@ django-extensions==2.1.9
django-guardian==1.4.9
django-polymorphic==2.0.3
django-reversion==3.0.3
django-tables2==2.1.0
docutils==0.14
idna==2.8
oauthlib==3.1.0
......
{% extends "base.html" %}
{% load render_table from django_tables2 %}
{% block content %}
<table class="table">
<tr>
<td>ID</td>
<td>name</td>
</tr>
{% for object in object_list %}
<tr>
<td>{{object.pk}}</td>
<td><a href="{{ object.get_absolute_url }}"> {{ object.name }}</a></td>
</tr>
{% endfor %}
</table>
{% render_table object_list %}
<a class="btn btn-primary" href="{% url 'member:club_create' %}">New Club</a>
{% endblock %}
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