batch readme
This commit is contained in:
		
							
								
								
									
										12
									
								
								Praktikum1/webteams/template/form0.tpl
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								Praktikum1/webteams/template/form0.tpl
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,12 @@
 | 
			
		||||
<!DOCTYPE html>
 | 
			
		||||
<html>
 | 
			
		||||
	<head>
 | 
			
		||||
		<title>Web-Teams</title>
 | 
			
		||||
		<meta charset="UTF-8" />
 | 
			
		||||
		<style>
 | 
			
		||||
			@import "/webteams.css";
 | 
			
		||||
		</style>
 | 
			
		||||
		<script type="text/javascript" src="/webteams.js"></script>
 | 
			
		||||
	</head>
 | 
			
		||||
	<body>
 | 
			
		||||
		<form id="idWTForm" action="/save" method="POST">
 | 
			
		||||
							
								
								
									
										14
									
								
								Praktikum1/webteams/template/form1.tpl
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								Praktikum1/webteams/template/form1.tpl
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,14 @@
 | 
			
		||||
			<input type="hidden" value="$id_s" id="id_s" name="id_s" />
 | 
			
		||||
			<div>
 | 
			
		||||
				<label for="name1_s">1. Name</label>
 | 
			
		||||
				<input type="text" value="$name1_s" id="name1_s" name="name1_s" required /> 
 | 
			
		||||
			</div>
 | 
			
		||||
			<div>
 | 
			
		||||
				<label for="vorname1_s">1. Vorname</label>
 | 
			
		||||
				<input type="text" value="$vorname1_s" id="vorname1_s" name="vorname1_s" required />
 | 
			
		||||
			</div>
 | 
			
		||||
			<div>
 | 
			
		||||
				<label for="matrnr1_s">1. Matrikelnummer</label>
 | 
			
		||||
				<input type="text" value="$matrnr1_s" id="matrnr1_s" name="matrnr1_s" required />
 | 
			
		||||
			</div>
 | 
			
		||||
			<!-- Ihre Ergänzung -->
 | 
			
		||||
							
								
								
									
										6
									
								
								Praktikum1/webteams/template/form2.tpl
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								Praktikum1/webteams/template/form2.tpl
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,6 @@
 | 
			
		||||
			<div>
 | 
			
		||||
				<input type="submit" value="Speichern" /><!-- Ihre Ergänzung -->
 | 
			
		||||
			</div>
 | 
			
		||||
		</form>
 | 
			
		||||
	</body>
 | 
			
		||||
</html>
 | 
			
		||||
							
								
								
									
										17
									
								
								Praktikum1/webteams/template/list0.tpl
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								Praktikum1/webteams/template/list0.tpl
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,17 @@
 | 
			
		||||
<!DOCTYPE html>
 | 
			
		||||
<html>
 | 
			
		||||
	<head> 
 | 
			
		||||
		<title>Web-Teams</title>
 | 
			
		||||
		<meta charset="UTF-8" /> 
 | 
			
		||||
		<style>
 | 
			
		||||
			@import "/webteams.css"; 
 | 
			
		||||
		</style>
 | 
			
		||||
		<script type="text/javascript" src="/webteams.js"></script>
 | 
			
		||||
	</head>
 | 
			
		||||
	<body>
 | 
			
		||||
		<table> <!-- HIER müssen Sie eine Ergänzung vornehmen -->
 | 
			
		||||
			<tr>
 | 
			
		||||
				<th>Name (1)</th><th>Vorname (1)</th><th>Matr.-Nr. (1)</th>
 | 
			
		||||
				<th>Name (2)</th><th>Vorname (2)</th><th>Matr.-Nr. (2)</th> 
 | 
			
		||||
				<th>Aktion</th>
 | 
			
		||||
			</tr>
 | 
			
		||||
							
								
								
									
										5
									
								
								Praktikum1/webteams/template/list1.tpl
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								Praktikum1/webteams/template/list1.tpl
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,5 @@
 | 
			
		||||
			<tr> <!-- HIER müssen Sie eine Ergänzung vornehmen --> 
 | 
			
		||||
				<td>$name1_s</td><td>$vorname1_s</td><td>$matrnr1_s</td>
 | 
			
		||||
				<td>$name2_s</td><td>$vorname2_s</td><td>$matrnr2_s</td>
 | 
			
		||||
				<td><a href="/edit/$id_s">bearbeiten</a> <a href="/delete/$id_s">löschen</a></td>
 | 
			
		||||
			</tr>
 | 
			
		||||
							
								
								
									
										6
									
								
								Praktikum1/webteams/template/list2.tpl
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								Praktikum1/webteams/template/list2.tpl
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,6 @@
 | 
			
		||||
		</table>
 | 
			
		||||
		<div>
 | 
			
		||||
			<a href="/add">erfassen</a>
 | 
			
		||||
		</div>
 | 
			
		||||
	</body>
 | 
			
		||||
</html>
 | 
			
		||||
							
								
								
									
										12
									
								
								Praktikum1/webteams/template/listaufz0.tpl
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								Praktikum1/webteams/template/listaufz0.tpl
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,12 @@
 | 
			
		||||
<!DOCTYPE html>
 | 
			
		||||
<html>
 | 
			
		||||
	<head>
 | 
			
		||||
		<title>Web-Teams</title>
 | 
			
		||||
		<meta charset="UTF-8" />
 | 
			
		||||
		<style>
 | 
			
		||||
			@import "/webteams.css";
 | 
			
		||||
		</style>
 | 
			
		||||
		<script type="text/javascript" src="/webteams.js"></script>
 | 
			
		||||
	</head>
 | 
			
		||||
	<body>
 | 
			
		||||
		<ul>
 | 
			
		||||
							
								
								
									
										7
									
								
								Praktikum1/webteams/template/listaufz1.tpl
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								Praktikum1/webteams/template/listaufz1.tpl
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,7 @@
 | 
			
		||||
			<!-- Sie müssen Ergänzungen vornehmen -->
 | 
			
		||||
			<li>Gruppe $nr: <a href="/edit/$id_s">bearbeiten</a> <a href="/delete/$id_s">löschen</a> 
 | 
			
		||||
				<ul>
 | 
			
		||||
					<li>$name1_s, $vorname1_s, $matrnr1_s</li>
 | 
			
		||||
					<li>$name2_s, $vorname2_s, $matrnr2_s</li>
 | 
			
		||||
				</ul>
 | 
			
		||||
			</li>
 | 
			
		||||
							
								
								
									
										6
									
								
								Praktikum1/webteams/template/listaufz2.tpl
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								Praktikum1/webteams/template/listaufz2.tpl
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,6 @@
 | 
			
		||||
		</ul>
 | 
			
		||||
		<div>
 | 
			
		||||
			<a href="/add">erfassen</a>
 | 
			
		||||
		</div>
 | 
			
		||||
	</body>
 | 
			
		||||
</html>
 | 
			
		||||
		Reference in New Issue
	
	Block a user