This change adds Github edit and view links to methods and decorator options. It is possible to add these to properties also but the UI is rather tight as these are displayed in a table. PR Close #24000
		
			
				
	
	
		
			12 lines
		
	
	
		
			587 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			587 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% import "lib/paramList.html" as params -%}
 | |
| {% import "lib/memberHelpers.html" as memberHelper -%}
 | |
| {% import "lib/descendants.html" as descendants -%}
 | |
| {% extends 'export-base.template.html' -%}
 | |
| 
 | |
| {% block overview %}{% include "includes/interface-overview.html" %}{% endblock %}
 | |
| {% block details %}
 | |
|   {% include "includes/description.html" %}
 | |
|   {$ memberHelper.renderProperties(doc.properties, 'instance-properties', 'instance-property', 'Properties') $}
 | |
|   {$ memberHelper.renderMethodDetails(versionInfo, doc.methods, 'instance-methods', 'instance-method', 'Methods') $}
 | |
| {% endblock %}
 |