mirror of
				https://github.com/inventree/inventree-website.git
				synced 2025-10-31 05:25:48 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			939 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			939 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <div class="row g-0 border rounded overflow-hidden flex-md-row mb-4 shadow-sm h-md-250 position-relative">
 | |
|     <div class="col p-4 d-flex flex-column position-static">
 | |
|       <div class="d-inline-block">
 | |
|         {% for cat in plugin.categories %}
 | |
|         <span class="badge bg-yellow-500">{{ cat }}</span>
 | |
|         {% endfor %}
 | |
|         {% for tag in plugin.tags %}
 | |
|         <span class="badge bg-blue-400">{{ tag }}</span>
 | |
|         {% endfor %}
 | |
|       </div>
 | |
|       <h3 class="mb-0">{{ plugin.name }}</h3>
 | |
|       <div class="mb-1 text-muted">
 | |
|         {% if plugin.published_on %}{{ plugin.published_on | date_to_string }} - {% endif %}
 | |
|         {% include partial/publisher_ref.html pub=plugin.publisher %}
 | |
|       </div>
 | |
|       <p class="mb-auto">{{ plugin.excerpt | mardownify | remove: '<p>' | remove: '</p>' }}</p>
 | |
|       <a href="{{ plugin.url | relative_url }}" class="stretched-link" aria-label="open plugin details"></a>
 | |
|     </div>
 | |
|   </div>
 | |
|    |