diff --git a/app/views/admin/petitions/show.html.haml b/app/views/admin/petitions/show.html.haml
index 0ecd4a1..a4f5b23 100644
--- a/app/views/admin/petitions/show.html.haml
+++ b/app/views/admin/petitions/show.html.haml
@@ -15,6 +15,7 @@
=raw "- "+raw(content_tag("span", (@petition.signators_number-@petition.confirmed_signators_number).to_s, :class => "badge badge-warning"))+" en attente" if @petition.signators_number-@petition.confirmed_signators_number > 0
%table.table.table.table-striped.table-bordered
%tr
+ %th Date
%th Nom
%th Prénom
%th Adresse
@@ -26,6 +27,7 @@
-@petition.signators.each do |signator|
%tr{:class => (signator.enabled ? "success" : "warning")}
+ %td=l signator.created_at, :format => :date
%td=signator.name
%td=signator.firstname
%td=signator.address