private ScoredDelayedFeedbackSingleSelectForm makeDelayedResponseForm(final String wicketId,
final Element elt) {
ISIXmlSection section = getISIXmlSection();
IModel<XmlSection> currentSectionModel = new XmlSectionModel(section);
boolean compact = Boolean.parseBoolean(elt.getAttributeNS(null, "compact"));
ScoredDelayedFeedbackSingleSelectForm selectForm = new ScoredDelayedFeedbackSingleSelectForm(wicketId, getPrompt(elt, PromptType.SINGLE_SELECT), currentSectionModel);
selectForm.add(new AttributeRemover("rgid", "title", "group", "type", "noAnswer", "compact"));
selectForm.setShowDateTime(!compact);
return selectForm;
}