mirror of
				https://github.com/netbox-community/netbox.git
				synced 2024-05-10 07:54:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			269 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			269 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% load helpers %}
 | 
						|
 | 
						|
<div class="card">
 | 
						|
  <h5 class="card-header">
 | 
						|
    Comments
 | 
						|
  </h5>
 | 
						|
  <div class="card-body">
 | 
						|
    {% if object.comments %}
 | 
						|
      {{ object.comments|markdown }}
 | 
						|
    {% else %}
 | 
						|
      <span class="text-muted">None</span>
 | 
						|
    {% endif %}
 | 
						|
  </div>
 | 
						|
</div>
 |