mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			358 B
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			358 B
		
	
	
	
		
			Twig
		
	
	
	
	
	
| <div class="list-group">
 | |
|     {% for journal in transactions %}
 | |
| 
 | |
|     <a class="list-group-item" title="{{journal.date.format('jS M Y')}}" href="{{route('transactions.show',journal.id)}}">
 | |
| 
 | |
|     {{ journal|typeIcon }}
 | |
| 
 | |
|     {{ journal.description }}
 | |
| 
 | |
|     <span class="pull-right small">
 | |
|     {{ journal|formatJournal }}
 | |
| 
 | |
|     </span>
 | |
| 
 | |
|     </a>
 | |
| {% endfor %}
 | |
| </div>
 |