private HtmlComponent getOldCoursePresentation(CompetenceCourse course) {
HtmlInlineContainer container = new HtmlInlineContainer();
container.addChild(new HtmlText(course.getName()));
container.addChild(new HtmlText(" ("));
container.addChild(new HtmlText(course.getAcronym()));
container.addChild(new HtmlText(") "));
container.addChild(getStage(course.getCurricularStage()));
container.addChild(new HtmlText(" ("));
container.addChild(getOldDepartmentMessage(course));
container.addChild(new HtmlText(")"));
container.setIndented(false);