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 804-809 form { Link Here
804
    }
804
    }
805
}
805
}
806
806
807
td .main_contact_method {
808
    background-color: #FFE;
809
    border: 1px solid #CCC;
810
    border-radius: 5px;
811
    display: inline-block;
812
    margin: .5em 0;
813
    padding: .1em .3em;
814
815
    &.none {
816
        background-color: #EEE;
817
    }
818
}
819
807
h1 {
820
h1 {
808
}
821
}
809
822
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/waiting_holds.inc (-1 / +21 lines)
Lines 59-64 Link Here
59
                            ></span
59
                            ></span
60
                        >
60
                        >
61
                    [% END %]
61
                    [% END %]
62
                    [% IF reserveloo.borrower.primary_contact_method %]
63
                        <div class="label main_contact_method"
64
                            >Main contact method:
65
                            [% SWITCH reserveloo.borrower.primary_contact_method %]
66
                            [% CASE 'phone' %]
67
                                <span>Primary phone</span>
68
                            [% CASE 'phonepro' %]
69
                                <span>Secondary phone</span>
70
                            [% CASE 'mobile' %]
71
                                <span>Other phone</span>
72
                            [% CASE 'email' %]
73
                                <span>Primary email</span>
74
                            [% CASE 'emailpro' %]
75
                                <span>Secondary email</span>
76
                            [% CASE 'fax' %]
77
                                <span>Fax</span>
78
                            [% END %]
79
                        </div>
80
                    [% ELSE %]
81
                        <div class="main_contact_method none">Main contact method: None</div>
82
                    [% END %]
62
                </td>
83
                </td>
63
                <td>[% Branches.GetName( reserveloo.item.homebranch ) | html %]</td>
84
                <td>[% Branches.GetName( reserveloo.item.homebranch ) | html %]</td>
64
                <td>[% Branches.GetName( reserveloo.item.holdingbranch ) | html %][% IF (reserveloo.desk_id  ) %], [% reserveloo.desk.desk_name | html %][% END %]</td>
85
                <td>[% Branches.GetName( reserveloo.item.holdingbranch ) | html %][% IF (reserveloo.desk_id  ) %], [% reserveloo.desk.desk_name | html %][% END %]</td>
65
- 

Return to bug 37860