31 lines
1.6 KiB
HTML
31 lines
1.6 KiB
HTML
@use nickel::Request;
|
|
@use nickel_jwt_session::SessionRequestExtensions;
|
|
@use models::{Photo, Person, Place, Tag, Camera, Coord};
|
|
@use server::{Link, SizeTag};
|
|
@use templates::page_base;
|
|
|
|
@(req: &Request, lpath: &[Link], people: &[Person], places: &[Place], tags: &[Tag], position: &Option<Coord>, attribution: &Option<String>, camera: &Option<Camera>, photo: &Photo)
|
|
@:page_base(req, "Photo details", lpath, {
|
|
<div class="details" data-imgid="@photo.id"@if let Some(g) = photo.grade { data-grade="@g"}@if let Some(ref p) = *position { data-position="[@p.x, @p.y]"}>
|
|
<div class="item"><img src="/img/@photo.id-m.jpg"@if let Some((w,h)) = photo.get_size(SizeTag::Medium.px()) { width="@w" height="@h"}></div>
|
|
<div class="meta">
|
|
@if req.authorized_user().is_some() {
|
|
<p><a href="/img/@photo.id-l.jpg">@photo.path</a></p>
|
|
@if photo.is_public() {<p>This photo is public.</p>}
|
|
else {<p>This photo is not public.</p>}
|
|
}
|
|
@if let Some(g) = photo.grade {<p>Grade: @g</p>}
|
|
@if let Some(d) = photo.date {<p>Time: @d.format("%F %T")</p>}
|
|
@if !people.is_empty() {
|
|
<p>People: @for p in people{<a href="/person/@p.slug">@p.person_name</a>, }</p>}
|
|
@if !tags.is_empty() {
|
|
<p>Tags: @for t in tags{<a href="/tag/@t.slug">@t.tag_name</a>, }</p>}
|
|
@if !places.is_empty() {
|
|
<p class="places">Places: @for p in places{<a href="/place/@p.slug">@p.place_name</a>, }</p>}
|
|
@if let Some(ref pos) = *position {<p>Position: @pos.x @pos.y</p>}
|
|
@if let Some(ref a) = *attribution {<p>Av: @a</p>}
|
|
@if let Some(ref c) = *camera{<p>Camera: @c.model (@c.manufacturer)</p>}
|
|
</div>
|
|
</div>
|
|
})
|