-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a browse collection view so as not to confuse the user with the ‘manage collection’ interface. Updated the navigation include and removed an unnecessary ‘back to collections’ button from the bottom of the collection view, bringing it into line with a series view.
- Loading branch information
1 parent
14919a4
commit 974af9c
Showing
5 changed files
with
66 additions
and
5 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,56 @@ | ||
{% extends "layouts/2-column.html" %} | ||
{% load bootstrap %} | ||
{% load staticfiles %} | ||
|
||
{% block title %}Lecture/Seminar Series{% endblock %} | ||
|
||
{% block topcontent %} | ||
|
||
{% endblock %} | ||
|
||
|
||
{% block side %} | ||
|
||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-sm-3 col-xs-12"> | ||
|
||
|
||
{% include 'events/navigation_for_listing.html' %} | ||
|
||
|
||
|
||
</div> | ||
|
||
</div> | ||
</div> | ||
|
||
{% endblock %} | ||
|
||
|
||
{% block main %} | ||
|
||
<h1>Collections</h1> | ||
|
||
<ul class="list-group"> | ||
<li class="list-group-item"> | ||
<p><strong> | ||
|
||
</strong></p> | ||
<ul class="list-unstyled"> | ||
{% for collection in collections %} | ||
<li class="contains-floating-buttons"> | ||
<a href="{% url 'view-list' collection.slug %}">{{ collection.title }}</a> | ||
|
||
</li> | ||
{% empty %} | ||
<p>There are no public collections available.</p> | ||
{% endfor %} | ||
</ul> | ||
</li> | ||
</ul> | ||
|
||
|
||
|
||
|
||
{% endblock %} |
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
974af9c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#427