diff options
| author | Birte Kristina Friesel <derf@finalrewind.org> | 2023-09-04 17:07:01 +0200 | 
|---|---|---|
| committer | Birte Kristina Friesel <derf@finalrewind.org> | 2023-09-04 17:07:01 +0200 | 
| commit | d4b3dcaf0670fb41175d0856fbde5e6a1026ecb8 (patch) | |
| tree | 4a5f829a737c67f4322cd68ab896330a4060195a | |
| parent | d585c319bf41966b1d5c74813affd8ed427d213b (diff) | |
legend: add profile/timeline icons
| -rw-r--r-- | templates/legend.html.ep | 29 | 
1 files changed, 29 insertions, 0 deletions
| diff --git a/templates/legend.html.ep b/templates/legend.html.ep index 4c1ecf0..73fded9 100644 --- a/templates/legend.html.ep +++ b/templates/legend.html.ep @@ -78,5 +78,34 @@  				<tr>  			</tbody>  		</table> +		<h3>Profil und Timeline</h3> +		<table class="striped"> +			<tbody> +				<tr> +					<td><i class="material-icons"><%= visibility_icon('public') %></i></td> +					<td>Öffentlicher Checkin</td> +				</tr> +				<tr> +					<td><i class="material-icons"><%= visibility_icon('travelynx') %></i></td> +					<td>Nur für Angemeldete</td> +				</tr> +				<tr> +					<td><i class="material-icons"><%= visibility_icon('followers') %></i></td> +					<td>Nur für Follower</td> +				</tr> +				<tr> +					<td><i class="material-icons"><%= visibility_icon('unlisted') %></i></td> +					<td>Nur mit Link / Token</td> +				</tr> +				<tr> +					<td><i class="material-icons"><%= visibility_icon('private') %></i></td> +					<td>Privater Checkin</td> +				</tr> +				<!-- <tr> +					<td><i class="material-icons">person_add</i></td> +					<td>Mitfahren (Checkin übernehmen)</td> +				<tr> --> +			</tbody> +		</table>  	</div>  </div> | 
