| 
									
										
										
										
											2021-04-13 10:53:55 -04:00
										 |  |  | {% extends 'generic/object.html' %} | 
					
						
							|  |  |  | {% load helpers %} | 
					
						
							|  |  |  | {% load static %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% block breadcrumbs %} | 
					
						
							| 
									
										
										
										
											2021-07-20 12:14:01 -04:00
										 |  |  |   {{ block.super }} | 
					
						
							| 
									
										
										
										
											2021-04-18 11:35:42 -07:00
										 |  |  |   <li class="breadcrumb-item"><a href="{% url object.assigned_object|viewname:'journal' pk=object.assigned_object.pk %}">{{ object.assigned_object }}</a></li> | 
					
						
							| 
									
										
										
										
											2021-04-13 10:53:55 -04:00
										 |  |  | {% endblock %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% block content %} | 
					
						
							| 
									
										
										
										
											2021-04-18 11:35:42 -07:00
										 |  |  |     <div class="row mb-3"> | 
					
						
							| 
									
										
										
										
											2021-04-30 15:55:37 -07:00
										 |  |  |         <div class="col col-md-4"> | 
					
						
							| 
									
										
										
										
											2021-04-18 11:35:42 -07:00
										 |  |  |             <div class="card"> | 
					
						
							|  |  |  |                 <h5 class="card-header"> | 
					
						
							|  |  |  |                     Journal Entry | 
					
						
							|  |  |  |                 </h5> | 
					
						
							|  |  |  |                 <div class="card-body"> | 
					
						
							|  |  |  |                     <table class="table table-hover attr-table"> | 
					
						
							|  |  |  |                         <tr> | 
					
						
							|  |  |  |                             <th scope="row">Object</th> | 
					
						
							|  |  |  |                             <td> | 
					
						
							|  |  |  |                                 <a href="{{ object.assigned_object.get_absolute_url }}">{{ object.assigned_object }}</a> | 
					
						
							|  |  |  |                             </td> | 
					
						
							|  |  |  |                         </tr> | 
					
						
							|  |  |  |                         <tr> | 
					
						
							|  |  |  |                             <th scope="row">Created</th> | 
					
						
							|  |  |  |                             <td> | 
					
						
							| 
									
										
										
										
											2021-07-06 12:10:29 -04:00
										 |  |  |                                 {{ object.created|annotated_date }} | 
					
						
							| 
									
										
										
										
											2021-04-18 11:35:42 -07:00
										 |  |  |                             </td> | 
					
						
							|  |  |  |                         </tr> | 
					
						
							|  |  |  |                         <tr> | 
					
						
							|  |  |  |                             <th scope="row">Created By</th> | 
					
						
							|  |  |  |                             <td> | 
					
						
							|  |  |  |                                 {{ object.created_by }} | 
					
						
							|  |  |  |                             </td> | 
					
						
							|  |  |  |                         </tr> | 
					
						
							|  |  |  |                         <tr> | 
					
						
							|  |  |  |                             <th scope="row">Kind</th> | 
					
						
							|  |  |  |                             <td> | 
					
						
							|  |  |  |                                 <span class="badge bg-{{ object.get_kind_class }}">{{ object.get_kind_display }}</span> | 
					
						
							|  |  |  |                             </td> | 
					
						
							|  |  |  |                         </tr> | 
					
						
							|  |  |  |                     </table> | 
					
						
							| 
									
										
										
										
											2021-04-13 10:53:55 -04:00
										 |  |  |                 </div> | 
					
						
							|  |  |  |             </div> | 
					
						
							|  |  |  |         </div> | 
					
						
							| 
									
										
										
										
											2021-04-30 15:55:37 -07:00
										 |  |  |         <div class="col col-md-8"> | 
					
						
							| 
									
										
										
										
											2021-07-21 14:20:14 -04:00
										 |  |  |             {% include 'inc/comments_panel.html' %} | 
					
						
							| 
									
										
										
										
											2021-04-13 10:53:55 -04:00
										 |  |  |         </div> | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  | {% endblock %} |