Minor fixes

This commit is contained in:
joss 2025-06-18 15:44:43 +02:00
parent 30fad90c87
commit 0eafa8adf1
2 changed files with 8 additions and 8 deletions

View file

@ -48,13 +48,13 @@ public class Model {
*/
public void fillMockData() {
// Studierende
this.add(new Student("students/jotto5", "Jocelyn", "Otto", "0001"));
this.add(new Student("students/vnachn", "Vorname", "Nachname", "0002"));
this.add(new Student("students/alovel", "Ada", "Lovelace", "0003"));
this.add(new Student("students/aturin", "Alan", "Turing", "0004"));
this.add(new Student("students/dknuth", "Donald", "Knuth", "0005"));
this.add(new Student("students/ltorva", "Linus", "Torvalds", "0006"));
this.add(new Student("students/dritch", "Dennis", "Ritchie", "0007"));
this.add(new Student("students/jotto5", "Jocelyn", "Otto", "000001"));
this.add(new Student("students/vnachn", "Vorname", "Nachname", "000002"));
this.add(new Student("students/alovel", "Ada", "Lovelace", "000003"));
this.add(new Student("students/aturin", "Alan", "Turing", "000004"));
this.add(new Student("students/dknuth", "Donald", "Knuth", "000005"));
this.add(new Student("students/ltorva", "Linus", "Torvalds", "000006"));
this.add(new Student("students/dritch", "Dennis", "Ritchie", "000007"));
// Gruppen und Beziehungen
this.add(new Group("groups/if24ws2-b", "Softwareentwicklung WiSe 24/25 Seminargruppe 2"));

View file

@ -5,7 +5,7 @@ package hsmw.jotto5.beleg.views;
*/
public class Defaults {
public static final String HTMLHEADER = "<!DOCTYPE html><html><title>Beleg SoSe 2025</title><link rel=stylesheet href=\"/style.css\"><head></head><body><div id=\"content\"><main><hr>";
public static final String HTMLHEADER = "<!DOCTYPE html><html><title>Beleg SoSe 2025</title><link rel=stylesheet href=\"/style.css\"><head></head><body><div id=\"content\"><main><a href=\"/main\">&uarr;Startseite</a><hr>";
public static final String HTMLFOOTER = "</main><footer><i><center>Hier k&ouml;nnte ihr Text stehen!</center></i></footer></div></body></html>";
}