mirror of
				https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
				synced 2025-10-31 02:32:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			69 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
| <!-- HTML to allow the user to export the current querey results in full or
 | |
| the selected sub results.-->
 | |
| 
 | |
| <div class="col s12 m3 l2" id="export">
 | |
|   <h6 style="margin-top: 0px;">Export</h6>
 | |
|   <div class="divider" style="margin-bottom: 10px;"></div>
 | |
|   <div class="row">
 | |
|     <div class="col s12" style="line-height: 38px;">
 | |
|         <div class="col s8">
 | |
|           Full context
 | |
|           <a class="tooltipped black-text" data-tooltip="Check this switch to
 | |
|             create results for the download with full context. Creating
 | |
|             results like this will take much longer but you will be able to
 | |
|             inspect your matches in detail when you import them into the query
 | |
|             results viewer.">
 | |
|             <i class="material-icons tiny">info_outline</i>
 | |
|           </a>
 | |
|         </div>
 | |
|         <div class="class col s4 right-align">
 | |
|           <div class="switch">
 | |
|             <label style="margin-left: -20px;">
 | |
|               <input type="checkbox" id="export-full-inspect-context">
 | |
|               <span class="lever"></span>
 | |
|             </label>
 | |
|           </div>
 | |
|         </div>
 | |
|     </div>
 | |
|     <div class="col s12">
 | |
|       <button class="waves-effect
 | |
|               waves-light
 | |
|               btn-flat
 | |
|               disabled
 | |
|               flat-interaction"
 | |
|               type="submit"
 | |
|               id="full-results-create">Create Results
 | |
|         <i class="material-icons left">build</i>
 | |
|       </button>
 | |
|       <button id="full-results-export"
 | |
|               class="waves-effect
 | |
|               waves-light
 | |
|               btn-flat
 | |
|               hide
 | |
|               flat-interaction"
 | |
|               type="submit">Results
 | |
|         <i class="material-icons left">file_download</i>
 | |
|       </button>
 | |
|     </div>
 | |
|     <div class="col s12">
 | |
|       <button class="waves-effect
 | |
|               waves-light
 | |
|               btn-flat
 | |
|               disabled
 | |
|               flat-interaction"
 | |
|               type="submit"
 | |
|               id="sub-results-create">Create Sub-Results
 | |
|         <i class="material-icons left">build</i>
 | |
|       </button>
 | |
|       <button id="sub-results-export"
 | |
|               class="waves-effect
 | |
|               waves-light
 | |
|               btn-flat
 | |
|               hide
 | |
|               flat-interaction"
 | |
|               type="submit">Sub-Results
 | |
|         <i class="material-icons left">file_download</i>
 | |
|       </button>
 | |
|     </div>
 | |
|   </div>
 | |
| </div> |