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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/messaging-preference-form.inc (-1 / +3 lines)
Lines 12-17 Link Here
12
          $("#rss"+newid).removeAttr("checked");
12
          $("#rss"+newid).removeAttr("checked");
13
			}
13
			}
14
		});
14
		});
15
        $("#info_digests").tooltip();
15
	});
16
	});
16
//]]>
17
//]]>
17
</script>
18
</script>
Lines 23-29 Link Here
23
        <th>Days in advance</th>
24
        <th>Days in advance</th>
24
        [% IF ( SMSSendDriver ) %]<th>SMS</th>[% END %]
25
        [% IF ( SMSSendDriver ) %]<th>SMS</th>[% END %]
25
        [% IF ( TalkingTechItivaPhone ) %]<th>Phone</th>[% END %]
26
        [% IF ( TalkingTechItivaPhone ) %]<th>Phone</th>[% END %]
26
        <th>Email</th><th>Digests only?</th>
27
        <th>Email</th>
28
        <th>Digests only <i id="info_digests" data-toggle="tooltip" title="You can ask for a digest to reduce the number of messages. Messages will be saved and sent as a single mesage." data-placement="right" class="icon icon-info-sign"></i></th>
27
        <!-- <th>RSS</th> -->
29
        <!-- <th>RSS</th> -->
28
        [% UNLESS ( messaging_form_inactive ) %]<th>Do not notify</th>[% END %]
30
        [% UNLESS ( messaging_form_inactive ) %]<th>Do not notify</th>[% END %]
29
    </tr>
31
    </tr>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-messaging.tt (-2 / +10 lines)
Lines 30-36 Link Here
30
                        <input type="hidden" name="modify" value="yes" />
30
                        <input type="hidden" name="modify" value="yes" />
31
31
32
                            <table class="table table-bordered table-condensed table-striped">
32
                            <table class="table table-bordered table-condensed table-striped">
33
                                <tr><th>&nbsp;</th><th>Days in advance</th>[% IF ( SMSSendDriver ) %]<th>SMS</th>[% END %][% IF ( TalkingTechItivaPhone ) %]<th>Phone</th>[% END %]<th>Email</th><th>Digests only?</th><!-- <th>RSS</th> --><th>Do not notify</th></tr>
33
                                <tr>
34
                                    <th>&nbsp;</th>
35
                                    <th>Days in advance</th>
36
                                    [% IF ( SMSSendDriver ) %]<th>SMS</th>[% END %]
37
                                    [% IF ( TalkingTechItivaPhone ) %]<th>Phone</th>[% END %]
38
                                    <th>Email</th>
39
                                    <th>Digests only <i id="info_digests" data-toggle="tooltip" title="You can ask for a digest to reduce the number of messages. Messages will be saved and sent as a single message." data-placement="right" class="icon icon-info-sign"></i></th>
40
                                    <!-- <th>RSS</th> --><th>Do not notify</th>
41
                                </tr>
34
                                [% FOREACH messaging_preference IN messaging_preferences %]
42
                                [% FOREACH messaging_preference IN messaging_preferences %]
35
                                    <tr>
43
                                    <tr>
36
                                        <td>[% IF ( messaging_preference.Item_Due ) %]Item due
44
                                        <td>[% IF ( messaging_preference.Item_Due ) %]Item due
Lines 139-144 Link Here
139
          $("#rss"+newid).removeAttr("checked");
147
          $("#rss"+newid).removeAttr("checked");
140
      }
148
      }
141
    });
149
    });
150
    $("#info_digests").tooltip();
142
  });
151
  });
143
//]]>
152
//]]>
144
</script>
153
</script>
145
- 

Return to bug 10174