forked from coala/projects
-
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.
events.html: Fetch and Display events from webservices
The commits adds an events directive that fetches the events from coala Webservices and displays them on the website in the card format. Instead of dissplaying all events, only the ongoing events, events occured in last 3 months and the events which are about to occur in next 3 months will be displayed to avoid a long list of cards. Closes coala#560
- Loading branch information
Showing
4 changed files
with
130 additions
and
0 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<!DOCTYPE html> | ||
<div class="main-content container"> | ||
<h2 class="center-text">~ Organization Events ~</h2> | ||
<div class="all-events-detail" ng-repeat="category in eventsList"> | ||
<div class="events-detail" ng-show="category.events.length>0"> | ||
<h5 class="lighter-font">{{ category.name }}</h5> | ||
<hr> | ||
<div class="apply-flex"> | ||
<div class="card blue-grey darken-1 event-card" ng-repeat="event in category.events"> | ||
<div class="card-content white-text constant-content-height"> | ||
<span class="card-title">{{ event.title }}</span> | ||
<p class="break-word">{{ event.description }}</p> | ||
<em class="break-word" ng-show="event.description === null">No event description available!</em> | ||
</div> | ||
<div class="card-action"> | ||
<a> | ||
{{ event.start_date_time | date:"medium" }} | ||
<span ng-show="event.end_date_time !== null"> | ||
- {{ event.end_date_time | date:"medium" }} | ||
</span> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="apply-flex no-events-available" ng-hide="eventsData.length>0"> | ||
<h6 class="center-text"> | ||
No Events Found! If you're already a member of organization and a developer, | ||
you can share it with us on <a href="https://community.coala.io/">Community website</a> | ||
by logging-in. | ||
</h6> | ||
</div> | ||
</div> |
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
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