mirror of
				https://github.com/slawkens/myaac.git
				synced 2025-10-26 22:14:18 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
| <div class="TableContainer">
 | |
| 	<table class="Table1" cellpadding="0" cellspacing="0">
 | |
| 		<div class="CaptionContainer">
 | |
| 			<div class="CaptionInnerContainer">
 | |
| 				<span class="CaptionEdgeLeftTop" style="background-image:url({{ template_path }}/images/content/box-frame-edge.gif);"></span>
 | |
| 				<span class="CaptionEdgeRightTop" style="background-image:url({{ template_path }}/images/content/box-frame-edge.gif);"></span>
 | |
| 				<span class="CaptionBorderTop" style="background-image:url({{ template_path }}/images/content/table-headline-border.gif);"></span>
 | |
| 				<span class="CaptionVerticalLeft" style="background-image:url({{ template_path }}/images/content/box-frame-vertical.gif);"></span>
 | |
| 				<div class="Text" >{{ title|raw }}</div>
 | |
| 				<span class="CaptionVerticalRight" style="background-image:url({{ template_path }}/images/content/box-frame-vertical.gif);"></span>
 | |
| 				<span class="CaptionBorderBottom" style="background-image:url({{ template_path }}/images/content/table-headline-border.gif);"></span>
 | |
| 				<span class="CaptionEdgeLeftBottom" style="background-image:url({{ template_path }}/images/content/box-frame-edge.gif);"></span>
 | |
| 				<span class="CaptionEdgeRightBottom" style="background-image:url({{ template_path }}/images/content/box-frame-edge.gif);"></span>
 | |
| 			</div>
 | |
| 		</div>
 | |
| 		<tr>
 | |
| 			<td>
 | |
| 				<div class="InnerTableContainer">
 | |
| 					<table style="width:100%;">
 | |
| 						<tr>
 | |
| 							<td>{{ description|raw }}</td>
 | |
| 						</tr>
 | |
| 					</table>
 | |
| 				</div>
 | |
| 			</td>
 | |
| 		</tr>
 | |
| 	</table>
 | |
| </div>
 | |
| <br/>
 | |
| {% if custom_buttons is defined %}
 | |
| {{ custom_buttons|raw }}
 | |
| {% else %}
 | |
| <div style="text-align:center">
 | |
| 	<table border="0" cellspacing="0" cellpadding="0">
 | |
| 		<tr>
 | |
| 			<td style="border:0;">
 | |
| 				<form action="{{ getLink('account/manage') }}" method="post">
 | |
| 					{{ csrf() }}
 | |
| 					{{ include('buttons.back.html.twig') }}
 | |
| 				</form>
 | |
| 			</td>
 | |
| 		</tr>
 | |
| 	</table>
 | |
| </div>
 | |
| {% endif %}
 | 
