-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9fbee24
commit 638e81a
Showing
2 changed files
with
47 additions
and
29 deletions.
There are no files selected for viewing
9 changes: 6 additions & 3 deletions
9
src/app/components/events/event-list-item/event-list-item.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
<a *ngIf="event" class="evt" [routerLink]="'/' + event.eventId" [class.first]="isFirst"> | ||
<div class="title"> | ||
<span class="inline-time">{{ event.start ? event.start : 'tuttadi' }}</span> | ||
{{ event.title }} | ||
<span class="cancelled" *ngIf="event.isCancelled">annullà</span> | ||
</div> | ||
<div class="location"> | ||
{{ event.location }} | ||
</div> | ||
<div class="time">{{ event.start ? event.start : 'tuttadi' }}</div> | ||
<div class="tags"> | ||
<div class="tag" *ngFor="let tag of event.genres">{{ tag.name }}</div> | ||
<div class="infos"> | ||
<span class="inline-time">{{ event.start ? event.start : 'tuttadi' }}</span> | ||
<div class="tags"> | ||
<div class="tag" *ngFor="let tag of event.genres">{{ tag.name }}</div> | ||
|
||
</div> | ||
</div> | ||
</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters