| 
									
										
										
										
											2021-05-17 16:27:27 -04:00
										 |  |  | {% extends 'base/layout.html' %} | 
					
						
							| 
									
										
										
										
											2017-08-21 16:53:36 -04:00
										 |  |  | {% load helpers %} | 
					
						
							| 
									
										
										
										
											2021-12-13 15:36:51 -05:00
										 |  |  | {% load render_table from django_tables2 %} | 
					
						
							| 
									
										
										
										
											2017-08-21 16:53:36 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | {% block title %}Remove {{ table.rows|length }} {{ obj_type_plural|bettertitle }}?{% endblock %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% block content %} | 
					
						
							| 
									
										
										
										
											2021-07-11 21:24:36 -04:00
										 |  |  | <div class="container-md px-0"> | 
					
						
							|  |  |  |   <div class="alert alert-danger" role="alert"> | 
					
						
							|  |  |  |     <h4 class="alert-heading">Confirm Bulk Removal</h4> | 
					
						
							|  |  |  |     <p><strong>Warning:</strong> The following operation will remove {{ table.rows|length }} {{ obj_type_plural }} from {{ parent_obj }}.</p> | 
					
						
							|  |  |  |     <hr /> | 
					
						
							|  |  |  |     <p class="mb-0">Please carefully review the {{ obj_type_plural }} to be removed and confirm below.</p> | 
					
						
							|  |  |  |   </div> | 
					
						
							| 
									
										
										
										
											2021-04-21 11:31:28 -07:00
										 |  |  | </div> | 
					
						
							| 
									
										
										
										
											2021-07-11 21:24:36 -04:00
										 |  |  | <div class="container-xl px-0"> | 
					
						
							| 
									
										
										
										
											2021-12-13 15:36:51 -05:00
										 |  |  |   <div class="table-responsive"> | 
					
						
							|  |  |  |     {% render_table table 'inc/table.html' %} | 
					
						
							|  |  |  |   </div> | 
					
						
							| 
									
										
										
										
											2021-07-11 21:24:36 -04:00
										 |  |  |   <form action="." method="post" class="form"> | 
					
						
							|  |  |  |     {% csrf_token %} | 
					
						
							|  |  |  |     {% for field in form.hidden_fields %} | 
					
						
							|  |  |  |       {{ field }} | 
					
						
							|  |  |  |     {% endfor %} | 
					
						
							|  |  |  |     <div class="text-center"> | 
					
						
							|  |  |  |       <button type="submit" name="_confirm" class="btn btn-danger">Delete these {{ table.rows|length }} {{ obj_type_plural }}</button> | 
					
						
							| 
									
										
										
										
											2022-07-19 14:21:20 -04:00
										 |  |  |       <a href="{{ return_url }}" class="btn btn-outline-dark">Cancel</a> | 
					
						
							| 
									
										
										
										
											2017-08-21 16:53:36 -04:00
										 |  |  |     </div> | 
					
						
							| 
									
										
										
										
											2021-07-11 21:24:36 -04:00
										 |  |  |   </form> | 
					
						
							| 
									
										
										
										
											2021-04-21 11:31:28 -07:00
										 |  |  | </div> | 
					
						
							| 
									
										
										
										
											2021-05-17 16:27:27 -04:00
										 |  |  | {% endblock content %} |