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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt (-8 / +7 lines)
Lines 41-53 Link Here
41
<h1>Sent notices for [% INCLUDE 'patron-title.inc' %]</h1>
41
<h1>Sent notices for [% INCLUDE 'patron-title.inc' %]</h1>
42
42
43
[% IF ( QUEUED_MESSAGES ) %]
43
[% IF ( QUEUED_MESSAGES ) %]
44
    <table id="noticestable">
44
    <table id="noticestable" style="table-layout: fixed">
45
	<thead>
45
	<thead>
46
	    <tr>
46
	    <tr>
47
		<th>Notice</th>
47
		<th width="600px">Notice</th>
48
		<th>Type</th>
48
		<th width="40px">Type</th>
49
		<th>Status</th>
49
		<th width="40px">Status</th>
50
		<th>Time</th>
50
		<th width="100px">Time</th>
51
	    </tr>
51
	    </tr>
52
	</thead>
52
	</thead>
53
	<tbody>
53
	<tbody>
Lines 55-63 Link Here
55
	    <tr>
55
	    <tr>
56
		<td>
56
		<td>
57
            <a class="notice-title" href="#">[% QUEUED_MESSAGE.subject %]</a>
57
            <a class="notice-title" href="#">[% QUEUED_MESSAGE.subject %]</a>
58
            <p class="notice">
58
            <div class="notice">
59
                [% QUEUED_MESSAGE.content FILTER html_line_break %]
59
                [% QUEUED_MESSAGE.content FILTER html_line_break %]
60
            </p>
60
            </div>
61
        </td>
61
        </td>
62
		<td>
62
		<td>
63
            [% IF ( QUEUED_MESSAGE.message_transport_type == 'email' ) %]email
63
            [% IF ( QUEUED_MESSAGE.message_transport_type == 'email' ) %]email
64
- 

Return to bug 12123