-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemployees.xml
38 lines (33 loc) · 1.51 KB
/
employees.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0" encoding="UTF-8"?>
<Staff>
<Employee>
<Picture><!-- images/PROFILE-PIC-FILENAME --></Picture>
<Thumbnail><!-- images/thumbs/THUMBNAIL-FILENAME --></Thumbnail>
<!-- If IsManager is set to yes, then their profile picture will take up 4 grid spaces instead of 1 at larger sizes. They will also display first when sorting by team. -->
<IsManager><!-- Enter 'Yes' or 'No' --></IsManager>
<Info>
<FirstName><!-- Employee first name --></FirstName>
<LastName><!-- Employee last name --></LastName>
<Role><!-- Position title --></Role>
<Team><!-- Team name. No spaces, this is used for sorting. See documentation on how to add or remove sort buttons. --></Team>
<!-- The following information is optional and may be left blank -->
<Nickname><!-- Employee nickname, if any --></Nickname>
<Hometown><!-- Employee home town --></Hometown>
<College><!-- Employee's college, if any --></College>
</Info>
<!-- The following sections are optional and may be left blank -->
<Quote>
<QuoteText><!-- Favorite quote text --></QuoteText>
<QuoteAuthor><!-- Author of favorite quote --></QuoteAuthor>
</Quote>
<Survey>
<TvShow><!-- Favorite TV show --></TvShow>
<PetChild><!-- List any pets or children --></PetChild>
<Song><!-- Favorite song --></Song>
<Travel><!-- Favorite place to travel --></Travel>
<Movie><!-- Favorite movie --></Movie>
<Hobby><!-- List any hobbies --></Hobby>
<TimeOfYear><!-- Favorite time of year --></TimeOfYear>
</Survey>
</Employee>
</Staff>