-
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.
Fixes and better reccomendation engine
- Loading branch information
Showing
8 changed files
with
50 additions
and
34 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,22 +1,20 @@ | ||
{% if attending_events %} | ||
<div class="pb-5"> | ||
<strong> | ||
<h3 class="pb-3" id="upcoming">My Sessions</h3> | ||
</strong> | ||
<p class="pb-5">Upcoming sessions you have signed up for.</p> | ||
<ul role="list" class="grid grid-cols-1 gap-6 pb-5 sm:grid-cols-2"> | ||
{% for event_item in attending_events %} | ||
<li class="col-span-1 divide-y shadow hover:shadow-xl divide-gray-200 transition-all duration-500 rounded-3xl bg-white"> | ||
<a href="{% url 'circles:event_detail' event_slug=event_item.slug %}"> | ||
<div class="flex w-full items-start justify-between space-x-6 p-4"> | ||
<div class="flex-1"> | ||
<h2 class="h2 text-gray-900 text-lg">{{ event_item.circle.title }}</h2> | ||
<p>{{ event_item.start|date:"g:i a T, D, M j" }}</p> | ||
</div> | ||
<div class="pb-5"> | ||
<strong> | ||
<h3 class="pb-3" id="upcoming">My Sessions</h3> | ||
</strong> | ||
<p class="pb-5">Upcoming sessions you have signed up for.</p> | ||
<ul role="list" class="grid grid-cols-1 gap-6 pb-5 sm:grid-cols-2"> | ||
{% for event_item in attending_events %} | ||
<li class="col-span-1 divide-y shadow hover:shadow-xl divide-gray-200 transition-all duration-500 rounded-3xl bg-white"> | ||
<a href="{% url 'circles:event_detail' event_slug=event_item.slug %}"> | ||
<div class="flex w-full items-start justify-between space-x-6 p-4"> | ||
<div class="flex-1"> | ||
<h2 class="h2 text-gray-900 text-lg">{{ event_item.circle.title }}</h2> | ||
<p>{{ event_item.start|date:"g:i a T, D, M j" }}</p> | ||
</div> | ||
</a> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
{% endif %} | ||
</div> | ||
</a> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</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