Link Here
|
111 |
[% IF Koha.Preference('ExtendedPatronAttributes') %] |
111 |
[% IF Koha.Preference('ExtendedPatronAttributes') %] |
112 |
[% FOREACH extendedattribute IN patron.extended_attributes %] |
112 |
[% FOREACH extendedattribute IN patron.extended_attributes %] |
113 |
[% IF ( extendedattribute.type.display_checkout ) %] [%# FIXME We should filter in the line above %] |
113 |
[% IF ( extendedattribute.type.display_checkout ) %] [%# FIXME We should filter in the line above %] |
114 |
[% IF ( extendedattribute.attribute ) %] [%# FIXME Why that? why not if == 0? %] |
114 |
[% IF ( extendedattribute.attribute.defined ) %] |
115 |
<li class="patronattribute"> |
115 |
<li class="patronattribute"> |
116 |
<span class="patronattributelabel">[% extendedattribute.type.description | html %]</span>: [% extendedattribute.description | html %] |
116 |
<span class="patronattributelabel">[% extendedattribute.type.description | html %]</span>: [% extendedattribute.description | html %] |
117 |
</li> |
117 |
</li> |
118 |
- |
|
|