diff --git a/smash/web/templates/provenance/breadcrumb.html b/smash/web/templates/provenance/breadcrumb.html
new file mode 100644
index 0000000000000000000000000000000000000000..1d4019a699c2cb1dee0b005b58ed1e2a4da53099
--- /dev/null
+++ b/smash/web/templates/provenance/breadcrumb.html
@@ -0,0 +1,2 @@
+<li><a href="{% url 'web.views.provenance' %}"><i class="fa fa-dashboard"></i> Dashboard</a></li>
+<li class="active"><a href="{% url 'web.views.provenance' %}">Provenance</a></li>
\ No newline at end of file
diff --git a/smash/web/templates/provenance/list.html b/smash/web/templates/provenance/list.html
new file mode 100644
index 0000000000000000000000000000000000000000..42840c32a6b7b5be70bf0ea9cb2149e784efccda
--- /dev/null
+++ b/smash/web/templates/provenance/list.html
@@ -0,0 +1,70 @@
+{% extends "_base.html" %}
+{% load static %}
+
+{% block styles %}
+    {{ block.super }}
+    <!-- DataTables -->
+    <link rel="stylesheet" href="{% static 'AdminLTE/plugins/datatables/dataTables.bootstrap.css' %}">
+{% endblock styles %}
+
+{% block ui_active_tab %}'provenance'{% endblock ui_active_tab %}
+{% block page_header %}Provenance{% endblock page_header %}
+{% block page_description %}{% endblock page_description %}
+
+{% block breadcrumb %}
+    {% include "languages/breadcrumb.html" %}
+{% endblock breadcrumb %}
+
+{% block maincontent %}
+
+    <div class="box-body">
+        <table id="table" class="table table-bordered table-striped">
+            <thead>
+            <tr>
+                <th>Table</th>
+                <th>Row</th>
+                <th>Date</th>
+                <th>Author</th>
+                <th>Field</th>
+                <th>Previous Value</th>
+                <th>New Value</th>
+                <th>Description</th>
+            </tr>
+            </thead>
+            <tbody>
+            {% for provenance in provenances %}
+                <tr>
+                    <td>{{ provenance.modified_table }}</td>
+                    <td>{{ provenance.modified_table_id }}</td>
+                    <td>{{ provenance.modification_date }}</td>
+                    <td>{{ provenance.modification_author }}</td>
+                    <td>{{ provenance.modified_field }}</td>
+                    <td>{{ provenance.previous_value }}</td>
+                    <td>{{ provenance.new_value }}</td>
+                    <td>{{ provenance.modification_description }}</td>
+                </tr>
+            {% endfor %}
+            </tbody>
+        </table>
+    </div>
+{% endblock maincontent %}
+
+{% block scripts %}
+    {{ block.super }}
+
+    <script src="{% static 'AdminLTE/plugins/datatables/jquery.dataTables.min.js' %}"></script>
+    <script src="{% static 'AdminLTE/plugins/datatables/dataTables.bootstrap.min.js' %}"></script>
+
+    <script>
+        $(function () {
+            $('#table').DataTable({
+                "paging": true,
+                "lengthChange": false,
+                "searching": true,
+                "ordering": true,
+                "info": true,
+                "autoWidth": false
+            });
+        });
+    </script>
+{% endblock scripts %}
diff --git a/smash/web/views/provenance.py b/smash/web/views/provenance.py
new file mode 100644
index 0000000000000000000000000000000000000000..dc2e85293892712dac29c5f00f679f394d388b9b
--- /dev/null
+++ b/smash/web/views/provenance.py
@@ -0,0 +1,15 @@
+# coding=utf-8
+from django.views.generic import ListView
+
+from . import WrappedView
+from ..models import Provenance
+from web.decorators import PermissionDecorator
+
+class ProvenanceListView(ListView, WrappedView):
+    model = Provenance
+    context_object_name = "provenances"
+    template_name = 'provenance/list.html'
+
+    @PermissionDecorator('view_provenance', 'configuration')
+    def dispatch(self, *args, **kwargs):
+        return super(ProvenanceListView, self).dispatch(*args, **kwargs)
\ No newline at end of file