mirror of
				https://github.com/searxng/searxng
				synced 2024-01-01 19:24:07 +01:00 
			
		
		
		
	simplify infobox result
This commit is contained in:
		
							parent
							
								
									e64cca8c3f
								
							
						
					
					
						commit
						85b5293e40
					
				
					 1 changed files with 2 additions and 5 deletions
				
			
		| 
						 | 
				
			
			@ -102,24 +102,21 @@ def response(resp):
 | 
			
		|||
 | 
			
		||||
    title = f"{location['areaName'][0]['value']}, {location['region'][0]['value']}"
 | 
			
		||||
 | 
			
		||||
    infobox = f"<h2>{gettext('Current condition')}</h2><table><tbody>"
 | 
			
		||||
    infobox = f"<h3>{gettext('Current condition')}</h3><table><tbody>"
 | 
			
		||||
 | 
			
		||||
    infobox += generate_condition_table(current, resp.search_params['language'], True)
 | 
			
		||||
 | 
			
		||||
    infobox += "</tbody></table>"
 | 
			
		||||
 | 
			
		||||
    for day in result["weather"]:
 | 
			
		||||
        infobox += "<hr />"
 | 
			
		||||
        infobox += f"<h2>{day['date']}</h2>"
 | 
			
		||||
        infobox += f"<h3>{day['date']}</h3>"
 | 
			
		||||
 | 
			
		||||
        infobox += f"<h3>{gettext('Overview')}</h3>"
 | 
			
		||||
        infobox += "<table><tbody>"
 | 
			
		||||
 | 
			
		||||
        infobox += generate_day_table(day)
 | 
			
		||||
 | 
			
		||||
        infobox += "</tbody></table>"
 | 
			
		||||
 | 
			
		||||
        infobox += f"<h3>{gettext('Forecast')}</h3>"
 | 
			
		||||
        infobox += "<table><tbody>"
 | 
			
		||||
 | 
			
		||||
        for time in forecast_indices.items():
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue