@@ -, +, @@ restiction is visible. --- koha-tmpl/intranet-tmpl/prog/en/includes/borrower_debarments.inc | 2 ++ koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt | 2 ++ 2 files changed, 4 insertions(+) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/borrower_debarments.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/borrower_debarments.inc @@ -36,6 +36,7 @@ Type Comment Expiration + Created [% IF CAN_user_borrowers && CAN_user_circulate_manage_restrictions %]   [% END %] @@ -64,6 +65,7 @@ [% END %] [% IF d.expiration %] [% d.expiration | $KohaDates %] [% ELSE %] Indefinite [% END %] + [% d.created | $KohaDates %] [% IF CAN_user_borrowers && CAN_user_circulate_manage_restrictions %] --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt @@ -1012,6 +1012,7 @@ $(document).ready(function() { Type Comment Expiration + Created [% IF CAN_user_borrowers && CAN_user_circulate_manage_restrictions %] Remove? [% END %] @@ -1030,6 +1031,7 @@ $(document).ready(function() { [% END %] [% IF d.expiration %] [% d.expiration | $KohaDates %] [% ELSE %] Indefinite [% END %] + [% d.created | $KohaDates %] [% IF CAN_user_borrowers && CAN_user_circulate_manage_restrictions %] --