Improved comment and added button for generation.

This commit is contained in:
Andrew Lalis 2019-04-16 09:46:13 +02:00 committed by andrewlalis
parent f44bf65a83
commit ac18001da8
2 changed files with 7 additions and 1 deletions

View File

@ -27,7 +27,10 @@ public abstract class Person extends BasicEntity {
private String emailAddress;
/**
* The list of teams that this person belongs to.
* The list of teams that this person belongs to. Because a person can belong to more than one team, it is implied
* that each person exists in only one location in the database. Therefore, if one person is enrolled in two courses
* both of which use this application, only one instance of that person will exist, and will simply be related to
* two teams.
*/
@ManyToMany(
fetch = FetchType.LAZY,

View File

@ -15,6 +15,9 @@
<div class="sidebar_block">
This is an example sidebar block.
</div>
<div class="sidebar_block">
Click here to generate courses.
</div>
</div>
</body>