This repository has been archived by the owner on Jan 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[refs #74159] Override document byline: created by.
Replace 'by' with 'created by' author to have a more clear information.
- Loading branch information
Showing
1 changed file
with
87 additions
and
0 deletions.
There are no files selected for viewing
87 changes: 87 additions & 0 deletions
87
...opernicus/content/browser/template-overrides/plone.app.layout.viewlets.document_byline.pt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
<!-- This override is done only to replace "by" with "created by" in span.documentAuthor --> | ||
<div class="documentByLine" | ||
id="plone-document-byline" | ||
i18n:domain="plone" | ||
tal:condition="view/show"> | ||
<span id="lock-icon" | ||
tal:define="lock_icon view/locked_icon" | ||
tal:condition="python:lock_icon"> | ||
<img tal:replace="structure lock_icon" /> | ||
</span> | ||
|
||
<tal:creator tal:define="creator_short_form view/creator;" | ||
tal:condition="creator_short_form"> | ||
<tal:name tal:define="creator_long_form string:?author=${creator_short_form}; | ||
creator_is_openid python:'/' in creator_short_form; | ||
creator_id python:(creator_short_form, creator_long_form)[creator_is_openid];"> | ||
<span class="documentAuthor"> | ||
<tal:i18n i18n:translate="label_by_author"> | ||
created by | ||
<a href="#" | ||
tal:attributes="href string:${context/@@plone_portal_state/navigation_root_url}/author/${creator_id}" | ||
tal:content="view/authorname" | ||
tal:omit-tag="python:view.author() is None" | ||
i18n:name="author">Roland Barthes</a> | ||
</tal:i18n> | ||
— | ||
</span> | ||
</tal:name> | ||
</tal:creator> | ||
|
||
<tal:dates define="published view/pub_date; | ||
modified context/ModificationDate"> | ||
<span class="documentPublished" | ||
tal:condition="published"> | ||
<span i18n:translate="box_published"> | ||
published | ||
</span> | ||
<span tal:replace="python:view.toLocalizedTime(published,long_format=1)"> | ||
August 16, 2001 at 23:35:59 | ||
</span><tal:sep condition="modified">,</tal:sep> | ||
</span> | ||
|
||
<span class="documentModified" | ||
tal:condition="modified"> | ||
<span i18n:translate="box_last_modified"> | ||
last modified | ||
</span> | ||
<span tal:replace="python:view.toLocalizedTime(modified,long_format=1)"> | ||
August 16, 2001 at 23:35:59 | ||
</span> | ||
</span> | ||
</tal:dates> | ||
|
||
<tal:expired tal:condition="view/isExpired"> | ||
— | ||
<span class="state-expired" | ||
i18n:translate="time_expired">expired</span> | ||
</tal:expired> | ||
|
||
<span class="contentHistory" id="content-history" | ||
tal:condition="view/show_history"> | ||
— | ||
<a href="#" | ||
tal:attributes="href string:${here/absolute_url}/@@historyview" | ||
i18n:translate="label_history">History</a> | ||
</span> | ||
|
||
<div class="documentContributors" | ||
tal:define="contributors context/Contributors" | ||
tal:condition="contributors" | ||
i18n:translate="text_contributors"> | ||
Contributors: | ||
<span i18n:name="name" | ||
tal:omit-tag="" | ||
tal:content="python: ', '.join(contributors)"> | ||
Mary | ||
</span> | ||
</div> | ||
|
||
<tal:rights tal:define="rights context/Rights" | ||
tal:condition="rights"> | ||
<div tal:replace="rights"> | ||
Copyleft NiceCorp Inc. | ||
</div> | ||
</tal:rights> | ||
|
||
</div> |