Changeset 1857 for trunk/pylucid_project/media/PyLucid
- Timestamp:
- 03/30/09 15:41:16 (12 months ago)
- Location:
- trunk/pylucid_project/media/PyLucid/internal_page
- Files:
-
- 6 modified
-
auth/pass_reset_email.html (modified) (2 diffs)
-
auth/pass_reset_form.html (modified) (1 diff)
-
blog/display_blog.html (modified) (2 diffs)
-
blog/notify_mailtext.html (modified) (2 diffs)
-
page_update_list/PageUpdateTable.html (modified) (1 diff)
-
preference_editor/select.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pylucid_project/media/PyLucid/internal_page/auth/pass_reset_email.html
r1449 r1857 1 A User has request ({{ request_time }}) a password reset for '{{ base_url }}'.1 A User has request ({{ request_time|date:_("DATETIME_FORMAT") }}) a password reset for '{{ base_url }}'. 2 2 3 3 If this is correct you must go to this Link to set a new pasword: … … 5 5 {{ reset_link }} 6 6 7 Note: The reset Link expiry {{ expiry_date }}!7 Note: The reset Link expiry {{ expiry_date|date:_("DATETIME_FORMAT") }}! 8 8 9 9 If this is not correct. Ignore this mail ;) -
trunk/pylucid_project/media/PyLucid/internal_page/auth/pass_reset_form.html
r1449 r1857 6 6 <strong>Note:</strong> 7 7 <ul> 8 <li>The reset Link expiry on {{ expiry_date }} (in {{ expiry_time }}sec.)</li>8 <li>The reset Link expiry on {{ expiry_date|date:_("DATETIME_FORMAT") }} (in {{ expiry_time }}sec.)</li> 9 9 <li>You must use the reset Link with the same Browser</li> 10 10 {% if expire_at_browser_close %} -
trunk/pylucid_project/media/PyLucid/internal_page/blog/display_blog.html
r1834 r1857 34 34 35 35 <small><p class="date_info"> 36 {% if entry.lastupdateby %}(Last update: {{ entry.lastupdatetime|date: "D d M Y H:i"}} by {{ entry.lastupdateby }}.){% endif %}36 {% if entry.lastupdateby %}(Last update: {{ entry.lastupdatetime|date:_("DATETIME_FORMAT") }} by {{ entry.lastupdateby }}.){% endif %} 37 37 </p></small> 38 38 … … 61 61 {% blocktrans with comment.createtime|timesince as time %}Before {{ time }}{% endblocktrans %} 62 62 IP: {{ comment.ip_address }} 63 {% if comment.lastupdateby %}<br />(Last update {{ comment.lastupdatetime }} by {{ comment.lastupdateby }}){% endif %}63 {% if comment.lastupdateby %}<br />(Last update {{ comment.lastupdatetime|date:_("DATETIME_FORMAT") }} by {{ comment.lastupdateby }}){% endif %} 64 64 </small> 65 65 </legend> -
trunk/pylucid_project/media/PyLucid/internal_page/blog/notify_mailtext.html
r1691 r1857 8 8 homepage.....: {% if comment_entry.homepage %}{{ comment_entry.homepage }}{% else %}-{% endif %} 9 9 IP Address...: {{ comment_entry.ip_address }} 10 submit time..: {{ comment_entry.createtime }}10 submit time..: {{ comment_entry.createtime|date:_("DATETIME_FORMAT") }} 11 11 12 12 --[submit messages]------------------------------------------------------------ … … 30 30 is public.......: {{ blog_entry.is_public|yesno:"yes,no,-" }} 31 31 create by.......: {{ blog_entry.createby }} 32 created.........: {{ blog_entry.createtime }}32 created.........: {{ blog_entry.createtime|date:_("DATETIME_FORMAT") }} 33 33 last update by..: {% if blog_entry.lastupdateby %}{{ blog_entry.lastupdateby }}{% else %}-{% endif %} 34 last update time: {% if blog_entry.lastupdatetime %}{{ blog_entry.lastupdatetime }}{% else %}-{% endif %}34 last update time: {% if blog_entry.lastupdatetime %}{{ blog_entry.lastupdatetime|date:_("DATETIME_FORMAT") }}{% else %}-{% endif %} 35 35 36 36 --[blog entry text]------------------------------------------------------------ -
trunk/pylucid_project/media/PyLucid/internal_page/page_update_list/PageUpdateTable.html
r1449 r1857 8 8 {% for item in page_updates %} 9 9 <tr> 10 <td>{{ item.lastupdatetime }}</td>10 <td>{{ item.lastupdatetime|date:_("DATETIME_FORMAT") }}</td> 11 11 <td><a href="{{ item.get_absolute_url }}">{% if item.title %}{{ item.title|escape }}{% else %}{{ item.name|escape }}{% endif %}</a></td> 12 12 <td>{{ item.lastupdateby }}</td> -
trunk/pylucid_project/media/PyLucid/internal_page/preference_editor/select.html
r1663 r1857 4 4 <li> 5 5 <a href="{{ edit_link }}{{ plugin.default_pref.id }}/" class="pref_entry" 6 title="{{ plugin.default_pref.comment }} - created: {{ plugin.default_pref.createtime }} by '{{ plugin.default_pref.createby }}' - lastupdate: {{ plugin.default_pref.lastupdatetime}} by '{{ plugin.default_pref.lastupdateby }}'"6 title="{{ plugin.default_pref.comment }} - created: {{ plugin.default_pref.createtime|date:_("DATETIME_FORMAT") }} by '{{ plugin.default_pref.createby }}' - lastupdate: {{ plugin.default_pref.lastupdatetime|date:_("DATETIME_FORMAT") }} by '{{ plugin.default_pref.lastupdateby }}'" 7 7 ><strong>{{ plugin }}</strong></a> 8 8 <small><a href="{{ admin_link }}{{ plugin.default_pref.id }}/" onclick="OpenInWindow(this); return false" title="{% trans 'edit this default preference entry in django admin panel' %}">id: {{ plugin.default_pref.id }}</a></small> … … 12 12 <li> 13 13 <a href="{{ edit_link }}{{ pref.id }}/" class="pref_entry" 14 title="created: {{ pref.createtime }} by '{{ pref.createby }}' - lastupdate: {{ pref.lastupdatetime}} by '{{ pref.lastupdateby }}'"14 title="created: {{ pref.createtime|date:_("DATETIME_FORMAT") }} by '{{ pref.createby }}' - lastupdate: {{ pref.lastupdatetime|date:_("DATETIME_FORMAT") }} by '{{ pref.lastupdateby }}'" 15 15 >{{ pref.comment }}</a> 16 16 <small><a href="{{ admin_link }}{{ pref.id }}/" onclick="OpenInWindow(this); return false" title="{% trans 'edit in django admin panel' %}">id: {{ pref.id }}</a></small>