{namespace JIRA.Templates.VersionBlocks} /** * Renders information for a version. * * @param versionId * @param name the name or title of the version * @param versionUrl the URL to view details for the version. * @param? description * @param? releaseDateContent the date on which the version is meant to be released. * @param? progressContent indicator for the progress made in a version. */ {template .versionBlock}

{call .versionIcon data="all"/} {$name}

{if $description}

{$description}

{/if}
{if $progressContent}
{$progressContent|noAutoescape}
{/if}
{/template} /** * Render the appropriate version icon. * @param? isReleased * @param? isArchived */ {template .versionIcon} {if hasData()} {sp} {/if} {/template}