Index: lams_central/conf/language/lams/ApplicationResources.properties =================================================================== diff -u -r7acb20e485013e119c7dfd90854f123c09f147cb -rd8c249be8dea5cacef6ff99f85452c26ec2a5efb --- lams_central/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 7acb20e485013e119c7dfd90854f123c09f147cb) +++ lams_central/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision d8c249be8dea5cacef6ff99f85452c26ec2a5efb) @@ -844,6 +844,8 @@ authoring.error.application.exercise.not.blank.and.grade=Application Exercise {0} may not be blank and must have a grade. authoring.label.grade=Grade authoring.label.none=None +index.outcomes.manage =Outcomes +index.outcomes.manage.tooltip =Manage learning outcomes and scales #=================== Specific to Team Based Learning (TBL) =========================# authoring.tbl.template.title=Team Based Learning Index: lams_central/src/java/org/lamsfoundation/lams/web/DisplayGroupAction.java =================================================================== diff -u -re3ce54ff7b473269e6148ad285f0148c61ae20af -rd8c249be8dea5cacef6ff99f85452c26ec2a5efb --- lams_central/src/java/org/lamsfoundation/lams/web/DisplayGroupAction.java (.../DisplayGroupAction.java) (revision e3ce54ff7b473269e6148ad285f0148c61ae20af) +++ lams_central/src/java/org/lamsfoundation/lams/web/DisplayGroupAction.java (.../DisplayGroupAction.java) (revision d8c249be8dea5cacef6ff99f85452c26ec2a5efb) @@ -215,6 +215,11 @@ } } + if (roles.contains(Role.ROLE_AUTHOR) && orgBean.getType().equals(OrganisationType.COURSE_TYPE)) { + moreLinks.add(new IndexLinkBean("index.outcomes.manage", "javascript:showOutcomesDialog()", + "fa fa-fw fa-check-circle-o", "index.outcomes.manage.tooltip")); + } + if (Configuration.getAsBoolean(ConfigurationKeys.ALLOW_KUMALIVE) && org.getEnableKumalive() && (roles.contains(Role.ROLE_GROUP_MANAGER) || roles.contains(Role.ROLE_MONITOR) || roles.contains(Role.ROLE_LEARNER))) {