I would like to make a list with products and there expiration date. To make the list more clear I would like to change the font color to RED when the date has been reached.
Is this possible this would be very handy.
Thanks in advance.
Niels
If you create a separate page for each product, then you can easily set an expiration date to them with the Better Content Archiving for Confluence app.
When the expiration is approaching, the date turns to yellow, and when it is passed, it turns to red:
As far as I know, you are going to need a User Macro and admin permissions to install it.
Here's one I wrote that does more than what you were asking for which you can tweak. I don't know if/when HTML 5 compatiblity will be an issue for Confluence so this is HTML 5 compatible.
Your list will be a list of macro boxes. Enter your product name/text whatever in the macro box ($body) and edit the macro to set the expiration date for each product.
## Macro Name: expdatehighligher
## Macro Title: Expiration Date Highlighter
## Macro Body Processing: Escaped
## @param endDate:title=Expiration Date|type=date|required=true|desc=mm/dd/yyyy
#set ($endDate = $content.currentDate)
#set ($currentDate = $content.currentDate)
$endDate.setTime($content.currentDate.parse($paramendDate))
#if($currentDate.before($endDate))
<p>$body $paramendDate</p>
#else
<p style="color:white; background-color:red; font-weight:bold">$body $paramendDate</p>
#end
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.