1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /**
- * Licensed Materials - Property of IBM
- * IBM Cognos Products: ca-home
- * (C) Copyright IBM Corp. 2017, 2018
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- <div class="homeView">
- <!-- homeViewWrapper is for DnD -->
- <div class="homeViewWrapper">
- </div>
- <div class="homeViewContent" {{? it.backgroundImage }}style="background-image: url({{=it.backgroundImage}}); background-size: cover;"{{?}}>
- <div class="homeViewBody">
- <div class="homeLabelContainer">
- <div class="promptLabel">
- <div class="primaryWelcomeMsg" >{{=it.welcome}}</div>
- <div class="secondaryWelcomeMsg" >{{=it.secondaryWelcomeMsg}}</div>
- </div>
- </div>
- {{? it.isNLPEnabled }}
- <div class="homeMain"> <!-- by Yang: is this unused code?? delete?-->
- <div class="actions rowFlexBox">
- <div class="nlpAction wa-app-nlp">
- <div class="wa-text nlp ">
- <span class="icon"></span>
- <a class="clear"></a>
- <input type="text" class="nlp-input" placeholder="Ask a question about your data" value="">
- </div>
- </div>
- </div>
- </div>
- {{?}}
- <div class="homeContentContainer">
- {{? it.isNLPEnabled }}
- <div class="wa-app-ssp"></div>
- {{?}}
- <div class="homeRecentContainer">
- </div>
- <div class="homeFooterContainer">
- {{? it.allowUploadFiles }}
- <div class="homeDndPrompt">
- <div class="homeDndIconContainer">
- <svg class="homeDndIcon" role="img" focusable="false"></svg>
- </div>
- <div class="homeDndCaption">
- {{=it.stringGetter.get('dndPrompt')}}
- </div>
- </div>
- {{?}}
- </div>
- </div>
- <div class="homeReferenceContainer">
- {{? it.wasmQuickRefContainerId }}
- <div id="{{=it.wasmQuickRefContainerId}}"></div>
- {{?}}
- </div>
- </div>
- </div>
- </div>
|