Skip to content
Snippets Groups Projects
Commit e0280ebe authored by tudtianus's avatar tudtianus
Browse files

fix: journalFilter all new filters correct

parent 79e59488
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,7 @@ public class DummyJournalService implements JournalService { ...@@ -44,7 +44,7 @@ public class DummyJournalService implements JournalService {
@Override @Override
public ArrayList<Journal> getAllJournals(String student, String project, JournalFilter filter) { public ArrayList<Journal> getAllJournals(String student, String project, JournalFilter filter) {
log.debug(">> get all journals(" + student , "," + project + ")"); log.debug(">> get all journals(" + student + "," + project + "," + filter + ")");
ArrayList<Journal> result = new ArrayList<>(); ArrayList<Journal> result = new ArrayList<>();
......
...@@ -71,16 +71,17 @@ ...@@ -71,16 +71,17 @@
</div> </div>
<div id="journal-container" class="tab-pane fade"> <div id="journal-container" class="tab-pane fade">
<h2>Lernatagebuch</h2> <h2>Lernatagebuch</h2>
<select id="journalfilter" onchange="filterJournals()">
<option>Alle</option>
<option>Eigene</option>
</select>
<a class="btn btn-default btn-sm" href="createJournal.jsp?token=test">Neu</a> <select id="journalfilter" onchange="filterJournals()">
<option value="ALL">Alle</option>
<option value="OWN">Eigene</option>
</select>
<div class="journal"> <a class="btn btn-default btn-sm" href="createJournal.jsp?token=test">Neu</a>
</div>
<div class="journal">
</div>
</div> </div>
</div> </div>
</td> </td>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment