Skip to content
Snippets Groups Projects
Commit 09295ceb authored by gnaegi's avatar gnaegi
Browse files

OO-2698 render tags like taks

parent 6c435edb
No related branches found
No related tags found
No related merge requests found
<div class="o_page_lead #if($imageAlign == "background") o_block_imagebg" style="background-image: url('$mapperThumbnailUrl/${imageName}');" #else " #end>
<h2>$r.escapeHtml($pageTitle) <small>$r.translate("binder.by",$owners)</small></h2>
<div class="o_portfolio_page_meta">
#if($r.isNotEmpty(pageCategories))
<span class="o_portfolio_categories text-muted o_small">
<strong>$r.translate("meta.categories")</strong> <i class="o_icon o_icon_tags"> </i>
#foreach($category in $pageCategories)
#if(${foreach.count} > 1), #end
$category
#end
</span>
#end
<div class="o_portfolio_page_meta">
#if($r.isNotNull($lastPublicationDate))
<span class="o_portfolio_publication_date text-muted o_small">#if($r.isNotEmpty(pageCategories)), #end
<span class="o_portfolio_publication_date text-muted o_small">
$r.translate("meta.last.publication", $r.formatDateAndTime($lastPublicationDate))
,
</span>
#end
<span class="o_portfolio_last_modified text-muted o_small">#if($r.isNotEmpty(pageCategories) || $r.isNotNull($lastPublicationDate)), #end
<span class="o_portfolio_last_modified text-muted o_small">
$r.translate("meta.last.modified", $r.formatDateAndTime($lastModified))
</span>
#if($r.isNotEmpty($pageCategories))
<span class="o_portfolio_categories text-muted o_small">
<i class="o_icon o_icon_tags" title="$r.translateInAttribute("categories")"> </i>
#foreach($category in $pageCategories)
<span class="tag label label-info">
$category
</span>
#end
</span>
#end
</div>
#if($r.available("poster") || $r.isNotEmpty($pageSummary))
<div class="o_page_summary clearfix">
......
......@@ -47,11 +47,12 @@
#if($r.isNotEmpty($row.sectionCategories))
<div class="o_portfolio_page_meta text-muted o_small">
$r.translate("meta.section.categories") <i class="o_icon o_icon_tags"> </i>
<span class="o_portfolio_categories">
<i class="o_icon o_icon_tags" title="$r.translateInAttribute("categories")"> </i>
#foreach($category in $row.sectionCategories)
#if(${foreach.count} > 1), #end
<a class="o_pf_tag" href="javascript:${f.ffXHREvent("tag_select","$category")}">$category</a>
<a class="tag label label-info" href="javascript:${f.ffXHREvent("tag_select","$category")}">$category</a>
#end
</span>
</div>
#end
</div>
......@@ -125,27 +126,25 @@
<div class="o_portfolio_page_meta_wrapper">
#if($r.isNotNull($row.assignment))
<i class="o_icon o_icon_assignment o_icon-fw"> </i> <strong>$r.translate("meta.assignment", $row.assignmentTitle)</strong>
#end
#if($r.isNotEmpty($row.pageCategories))
<span class="o_portfolio_page_meta text-muted o_small">
#if($r.isNotNull($row.assignment)), #end
<strong>$r.translate("meta.categories")</strong> <i class="o_icon o_icon_tags"> </i>
#foreach($category in $row.pageCategories)
#if(${foreach.count} > 1), #end
<a class="o_pf_tag" href="javascript:${f.ffXHREvent("tag_select","$category")}">$category</a>
#end
</span>
#if($r.isNotNull($row.lastPublicationDate)), #end
#end
#if($r.isNotNull($row.lastPublicationDate))
<span class="o_portfolio_page_meta text-muted o_small">
#if($r.isNotNull($row.assignment) || $r.isNotEmpty($row.pageCategories)), #end
$r.translate("meta.last.publication", $r.formatDateAndTime($row.lastPublicationDate))
,
</span>
#end
<span class="o_portfolio_page_meta text-muted o_small">
#if($r.isNotNull($row.assignment) || $r.isNotNull($row.lastPublicationDate) or $r.isNotEmpty($row.pageCategories)), #end
$r.translate("meta.last.modified", $r.formatDateAndTime($row.lastModified))
</span>
#if($r.isNotEmpty($row.pageCategories))
<span class="o_portfolio_categories text-muted o_small">
<i class="o_icon o_icon_tags" title="$r.translateInAttribute("categories")"> </i>
#foreach($category in $row.pageCategories)
<a class="tag label label-info" href="javascript:${f.ffXHREvent("tag_select","$category")}">$category</a>
#end
</span>
#end
#if($r.isNotNull(${r.row.getMetaBinderAndSectionTitles()}))
<div class="o_portfolio_page_meta text-muted o_small">
$r.translate("meta.binder.section.titles", ${row.getMetaBinderAndSectionTitles()})
......
......@@ -191,6 +191,18 @@
}
}
.o_portfolio_categories {
.tag {
font-size: 80%;
font-weight: normal;
}
}
.o_portfolio_last_modified + .o_portfolio_categories,
.o_portfolio_page_meta + .o_portfolio_categories {
margin-left: 1em;
}
.o_rendertype_classic {
.o_pf_page, .o_pf_assignment {
padding-left: 1em;
......
This diff is collapsed.
source diff could not be displayed: it is too large. Options to address this: view the blob.
source diff could not be displayed: it is too large. Options to address this: view the blob.
This diff is collapsed.
source diff could not be displayed: it is too large. Options to address this: view the blob.
source diff could not be displayed: it is too large. Options to address this: view the blob.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment