Ignore:
Timestamp:
07/13/10 14:56:21 (23 months ago)
Author:
dart
Message:

LoReality?:
o Implement notifications
o Begin integration of ajax fmw dojo

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/loreality/loreality/templates/derived/page/messager.html

    r2109 r2111  
    88<div class="message"> 
    99% endif 
     10    <a href=${h.url_for(controller='messager', action='delete',id=message.id) } class="action">[Delete]</a> 
    1011% if message.id == c.message_open: 
    1112<span><a href=${h.url_for(controller='messager', action='index',id=message.id) } class="action">${h.msg.get_from(message)} | ${message.date.strftime("%c")}  <span id="subject">${message.subject}</span></a></span> 
    12     <div id="text">${message.text}</div> 
     13    <div id="text">${h.literal(message.text)}</div> 
    1314    <a href=${h.url_for(controller='messager', action='create',id=message.id) } class="action">[Reply]</a> 
    1415% else: 
    15 <span><a href=${h.url_for(controller='messager', action='open',id=message.id) } class="action">${h.msg.get_from(message)} | ${message.date.strftime("%c")} | <span id="subject"> ${message.subject}</span></a></span> 
     16    % if message.unread: 
     17        <span class="unread"><a href=${h.url_for(controller='messager', action='open',id=message.id) } class="action">${h.msg.get_from(message)} | ${message.date.strftime("%c")} | <span id="subject"> ${message.subject}</span></a></span> 
     18    %else: 
     19        <span><a href=${h.url_for(controller='messager', action='open',id=message.id) } class="action">${h.msg.get_from(message)} | ${message.date.strftime("%c")} | <span id="subject"> ${message.subject}</span></a></span> 
     20    % endif 
    1621% endif 
    17     <a href=${h.url_for(controller='messager', action='delete',id=message.id) } class="action">[Delete]</a> 
    1822</div> 
    1923<br/> 
Note: See TracChangeset for help on using the changeset viewer.