View | Details | Raw Unified | Return to bug 37860
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (+13 lines)
Lines 821-826 form { Link Here
821
    }
821
    }
822
}
822
}
823
823
824
td .main_contact_method {
825
    background-color: #FFE;
826
    border: 1px solid #CCC;
827
    border-radius: 5px;
828
    display: inline-block;
829
    margin: .5em 0;
830
    padding: .1em .3em;
831
832
    &.none {
833
        background-color: #EEE;
834
    }
835
}
836
824
h1 {
837
h1 {
825
}
838
}
826
839
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/waiting_holds.inc (-1 / +18 lines)
Lines 58-63 Link Here
58
                        <span class="patron_email"><br /><a href="mailto:[% reserveloo.borrower.notice_email_address | uri %]?subject=[% "Hold waiting: " | uri %][% reserveloo.biblio.title | uri %]">
58
                        <span class="patron_email"><br /><a href="mailto:[% reserveloo.borrower.notice_email_address | uri %]?subject=[% "Hold waiting: " | uri %][% reserveloo.biblio.title | uri %]">
59
                        [% reserveloo.borrower.notice_email_address | html %]</a></span>
59
                        [% reserveloo.borrower.notice_email_address | html %]</a></span>
60
                    [% END %]
60
                    [% END %]
61
                    [% IF reserveloo.borrower.primary_contact_method %]
62
                        <span class="label main_contact_method">Main contact method:
63
                            [% SWITCH reserveloo.borrower.primary_contact_method %]
64
                              [% CASE 'phone' %]
65
                                  <span>Primary phone</span>
66
                              [% CASE 'phonepro' %]
67
                                  <span>Secondary phone</span>
68
                              [% CASE 'mobile' %]
69
                                  <span>Other phone</span>
70
                              [% CASE 'email' %]
71
                                  <span>Primary email</span>
72
                              [% CASE 'emailpro' %]
73
                                  <span>Secondary email</span>
74
                              [% CASE 'fax' %]
75
                                  <span>Fax</span>
76
                            [% END %]
77
                        </span>
78
                    [% END %]
61
                </td>
79
                </td>
62
                <td>[% Branches.GetName( reserveloo.item.homebranch ) | html %]</td>
80
                <td>[% Branches.GetName( reserveloo.item.homebranch ) | html %]</td>
63
                <td>[% Branches.GetName( reserveloo.item.holdingbranch ) | html %][% IF (reserveloo.desk_id  ) %], [% reserveloo.desk.desk_name | html %][% END %]</td>
81
                <td>[% Branches.GetName( reserveloo.item.holdingbranch ) | html %][% IF (reserveloo.desk_id  ) %], [% reserveloo.desk.desk_name | html %][% END %]</td>
64
- 

Return to bug 37860