Skip to content

Commit

Permalink
SAK-32034 Ensure instruction only displayed if required. (sakaiprojec…
Browse files Browse the repository at this point in the history
…t#4379)

* SAK-32034 Ensure instruction only displayed if required.
Also change text of second instruction.

* SAK-32034 Small modification to instruction text.
  • Loading branch information
RebeccaMiller-Which authored and ern committed Jun 27, 2017
1 parent 339b5f7 commit e413fb2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ list.moreinfotooltip=More information on this site

## multiple tools vm
multipleTools.custom = Customize tool instances
multipleTools.custom1 = Add multiple tool instances or configure tool options. You can also make configuration adjustments later in the site using the configuration capabilities for each tool.
multipleTools.custom1 = You can make configuration adjustments later using the configuration capabilities for each tool.
multipleTools.email = Email Archive
multipleTools.site = Site email address
multipleTools.emailreq = Email address (required)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,16 @@

## customize lti tools
#if (!$!ltiTools.isEmpty())
<p class="instruction">
$tlang.getString("ltiTools.custom.instruction")
</p>
#foreach($ltiTool in $ltiTools.entrySet())
#set($ltiToolId=$ltiTool.getKey())
#if (!$!oldLtiTools.containsKey($ltiToolId))
## show the input only if the tool is not enabled in the site yet
## show the input only if the tool is not enabled in the site yet and display the heading only once
#if (!$!instruction)
#set($instruction=$tlang.getString("ltiTools.custom.instruction"))
<p class="instruction">
$instruction
</p>
#end
#set($ltiToolValues=$ltiTool.getValue())
#set($ltiToolFormInput=$ltiToolValues.get("formInput"))
<h4>
Expand Down

0 comments on commit e413fb2

Please sign in to comment.