Skip to content

Commit

Permalink
fixed branding and document title
Browse files Browse the repository at this point in the history
Issue #573
  • Loading branch information
rsoika committed Feb 12, 2024
1 parent d7fea68 commit 549d0de
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<ui:param name="title" value="#{propertyController.getProperty('application.title')}"></ui:param>
<h:outputText rendered="#{empty title}" value="#{resourceBundleHandler.findMessage('application_title')}" />
<h:outputText rendered="#{!empty title}" value="#{title}" />
- #{workflowController.workitem.item['$uniqueid']}
</title>

<!-- imixs-css -->
Expand Down Expand Up @@ -133,7 +134,13 @@

<!-- Branding -->
<div class="branding">
<h1>#{app.application_title}</h1>
<h1>
<ui:param name="title" value="#{propertyController.getProperty('application.title')}">
</ui:param>
<h:outputText rendered="#{empty title}"
value="#{resourceBundleHandler.findMessage('application_title')}" />
<h:outputText rendered="#{!empty title}" value="#{title}" />
</h1>
<p style="float:right"><span id="printtime"></span></p>
</div>
<hr />
Expand Down

0 comments on commit 549d0de

Please sign in to comment.