diff --git a/idhub/templates/idhub/admin/import.html b/idhub/templates/idhub/admin/import.html
index c0e3f64..87c0cc3 100644
--- a/idhub/templates/idhub/admin/import.html
+++ b/idhub/templates/idhub/admin/import.html
@@ -1,36 +1,14 @@
{% extends "idhub/base_admin.html" %}
{% load i18n %}
+{% load render_table from django_tables2 %}
{% block content %}
-
-
-
-
-
- |
- |
- |
-
-
-
- {% for f in dates.all %}
-
- {{ f.created_at }} |
- {{ f.file_name }} |
- {% if f.success %}{% else %}{% endif %} |
-
- {% endfor %}
-
-
-
-
-
+{% render_table table %}
+
{% endblock %}
diff --git a/idhub/templates/idhub/admin/people.html b/idhub/templates/idhub/admin/people.html
index 25b7c61..4862f82 100644
--- a/idhub/templates/idhub/admin/people.html
+++ b/idhub/templates/idhub/admin/people.html
@@ -1,39 +1,11 @@
{% extends "idhub/base_admin.html" %}
{% load i18n %}
+{% load render_table from django_tables2 %}
{% block content %}
{{ subtitle }}
-
-
-
-
- |
- |
- |
- |
- |
- |
-
-
-
- {% for user in users %}
-
- {{ user.last_name|default:'' }} |
- {{ user.first_name|default:'' }} |
- {{ user.email }} |
-
- {{ user.get_memberships }}
- |
-
- {{ user.get_roles }}
- |
- |
-
- {% endfor %}
-
-
-
+{% render_table table %}
{% endblock %}
diff --git a/idhub/templates/idhub/admin/roles.html b/idhub/templates/idhub/admin/roles.html
index d3d6593..0bc90aa 100644
--- a/idhub/templates/idhub/admin/roles.html
+++ b/idhub/templates/idhub/admin/roles.html
@@ -1,5 +1,6 @@
{% extends "idhub/base_admin.html" %}
{% load i18n %}
+{% load render_table from django_tables2 %}
{% block content %}
@@ -8,31 +9,10 @@
-
-
-
-
- |
- |
- |
- |
-
-
-
- {% for rol in roles.all %}
-
- {{ rol.name }} |
- {{ rol.description|default:""}} |
- |
- |
-
- {% endfor %}
-
-
+ {% render_table table %}
-
{% endblock %}
diff --git a/idhub/templates/idhub/admin/schemas.html b/idhub/templates/idhub/admin/schemas.html
index 6afcf41..543c89b 100644
--- a/idhub/templates/idhub/admin/schemas.html
+++ b/idhub/templates/idhub/admin/schemas.html
@@ -1,47 +1,19 @@
{% extends "idhub/base_admin.html" %}
{% load i18n %}
+{% load render_table from django_tables2 %}
{% block content %}
{{ subtitle }}
-
-
-
-
-
-
- |
- |
- |
- |
- |
- |
-
-
-
- {% for schema in schemas.all %}
-
- {{ schema.created_at }} |
- {{ schema.file_schema }} |
- {{ schema.name }} |
- {{ schema.description }} |
- |
- |
-
- {% endfor %}
-
-
-
-
-
+{% render_table table %}
+
-{% for schema in schemas.all %}
-
+{% for schema in object_list %}
+