Subversion-Projekte lars-tiefland.ci

Revision

Revision 1307 | Revision 1516 | Zur aktuellen Revision | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 1307 Revision 1333
Zeile 1... Zeile 1...
1
<!-- $Id: header.tpl 1307 2016-11-05 21:01:33Z lars $ BEGIN -->
1
<!-- $Id: header.tpl 1333 2016-11-07 12:08:53Z lars $ BEGIN -->
2
<!DOCTYPE html>
2
<!DOCTYPE html>
3
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
3
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
	{nocache}
4
	{nocache}
5
	<head>
5
	<head>
6
		<title>{$title} - Backend {$ini.titel_only}</title>
6
		<title>{$title} - Backend {$ini.titel_only}</title>
Zeile 51... Zeile 51...
51
				$('.nav-link').click(save_state);
51
				$('.nav-link').click(save_state);
52
			})
52
			})
53
			function save_state()
53
			function save_state()
54
			{
54
			{
55
				elemId=$(this).attr('id').split('_');
55
				elemId=$(this).attr('id').split('_');
56
				$.get('/backend/?clicked='+elemId[1],function(){
56
				$.get('/backend/?clicked='+elemId[1]+"&clicked_tool="+elemId[2],function(){
57
					$('.nav-item').removeClass('active open');
57
					$('.nav-item').removeClass('active open');
58
					$('#li_'+elemId[1]).addClass('active open');
58
					$('#li_'+elemId[1]).addClass('active open');
59
				}); 	
59
				}); 	
60
			}
60
			}
61
		</script>
61
		</script>
Zeile 166... Zeile 166...
166
									<span class="title">{$module.name}</span>
166
									<span class="title">{$module.name}</span>
167
									<span class="arrow"></span>
167
									<span class="arrow"></span>
168
								</a>
168
								</a>
169
								<ul class="sub-menu">
169
								<ul class="sub-menu">
170
								{foreach $module.tools as $tool}
170
								{foreach $module.tools as $tool}
171
									<li class="nav-item">
171
									<li class="nav-item {if $smarty.session.clicked_tool==$tool.name}active{/if}">
172
										<a href="{$tool.filename}" class="nav-link content-link" id="tool_{$module.name}_{$tool.name}">
172
										<a href="{$tool.filename}" class="nav-link content-link" id="tool_{$module.name}_{$tool.name}">
173
											<i class="{$tool.icon}"></i>
173
											<i class="{$tool.icon}"></i>
174
											<span class="title">{$tool.name}</span>
174
											<span class="title">{$tool.name}</span>
175
										</a>
175
										</a>
176
									</li>
176
									</li>
Zeile 186... Zeile 186...
186
				<!-- END SIDEBAR -->
186
				<!-- END SIDEBAR -->
187
				<!-- BEGIN CONTENT -->
187
				<!-- BEGIN CONTENT -->
188
				<div class="page-content-wrapper">
188
				<div class="page-content-wrapper">
189
					<!-- BEGIN CONTENT BODY -->
189
					<!-- BEGIN CONTENT BODY -->
190
					<div class="page-content">
190
					<div class="page-content">
191
<!-- $Id: header.tpl 1307 2016-11-05 21:01:33Z lars $ BEGIN -->
191
<!-- $Id: header.tpl 1333 2016-11-07 12:08:53Z lars $ BEGIN -->