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 795-800 form { Link Here
795
    }
795
    }
796
}
796
}
797
797
798
td .main_contact_method {
799
    background-color: #FFE;
800
    border: 1px solid #CCC;
801
    border-radius: 5px;
802
    display: inline-block;
803
    margin: .5em 0;
804
    padding: .1em .3em;
805
806
    &.none {
807
        background-color: #EEE;
808
    }
809
}
810
798
h1 {
811
h1 {
799
}
812
}
800
813
(-)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