mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	activity: Rename standard free to open source.
"standard free" looks too similar to "standard". Also it makes it hard to Ctr+f for "standard".
This commit is contained in:
		@@ -478,7 +478,7 @@ def realm_summary_table(realm_minutes: Dict[str, float]) -> str:
 | 
				
			|||||||
    for row in rows:
 | 
					    for row in rows:
 | 
				
			||||||
        row['date_created_day'] = row['date_created'].strftime('%Y-%m-%d')
 | 
					        row['date_created_day'] = row['date_created'].strftime('%Y-%m-%d')
 | 
				
			||||||
        row['plan_type_string'] = [
 | 
					        row['plan_type_string'] = [
 | 
				
			||||||
            '', 'self hosted', 'limited', 'standard', 'standard free'][row['plan_type']]
 | 
					            '', 'self hosted', 'limited', 'standard', 'open source'][row['plan_type']]
 | 
				
			||||||
        row['age_days'] = int((now - row['date_created']).total_seconds()
 | 
					        row['age_days'] = int((now - row['date_created']).total_seconds()
 | 
				
			||||||
                              / 86400)
 | 
					                              / 86400)
 | 
				
			||||||
        row['is_new'] = row['age_days'] < 12 * 7
 | 
					        row['is_new'] = row['age_days'] < 12 * 7
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user