-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1712 from dchiller/i1703-global-search-bar-results
fix(global search bar): display result data with embedded search bar
- Loading branch information
Showing
25 changed files
with
374 additions
and
378 deletions.
There are no files selected for viewing
31 changes: 16 additions & 15 deletions
31
django/cantusdb_project/main_app/templates/century_detail.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,23 +1,24 @@ | ||
{% extends "base.html" %} | ||
{% extends "single_column_with_search_bar.html" %} | ||
|
||
{% block title %} | ||
<title>{{ century.name }} | Cantus Database</title> | ||
{% endblock %} | ||
|
||
{% block content %} | ||
<div class="mr-3 p-3 mx-auto bg-white rounded"> | ||
<object align="right" class="search-bar"> | ||
{% include "global_search_bar.html" %} | ||
</object> | ||
{% block header %} | ||
<h3>{{ century.name }}</h3> | ||
<ul> | ||
{% for source in sources %} | ||
<li> | ||
<a href="{% url 'source-detail' source.id %}" title="{{ source.short_heading }}"> | ||
{{ source.heading }} | ||
</a> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
{% endblock %} | ||
{% block maincontent %} | ||
<div class="row"> | ||
<div class="col"> | ||
<ul> | ||
{% for source in sources %} | ||
<li> | ||
<a href="{% url 'source-detail' source.id %}" title="{{ source.short_heading }}"> | ||
{{ source.heading }} | ||
</a> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
</div> | ||
{% 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,16 @@ | ||
{% extends "base.html" %} | ||
{% extends "single_column_with_search_bar.html" %} | ||
|
||
{% block title %} | ||
<title>Contact | Cantus Database</title> | ||
{% endblock %} | ||
|
||
{% block content %} | ||
<div class="mr-3 p-3 mx-auto bg-white rounded"> | ||
<!-- global search bar--> | ||
<object align="right" class="search-bar"> | ||
{% include "global_search_bar.html" %} | ||
</object> | ||
|
||
{% block header %} | ||
<h3>Contact</h3> | ||
<p style="padding-top: 25px;">Please direct questions or comments about Cantus Database to Debra Lacoste at <a href="mailto:[email protected]">[email protected]</a>.</p> | ||
|
||
</div> | ||
{% endblock %} | ||
{% block maincontent %} | ||
<div class="row"> | ||
<div class="col"> | ||
<p class="pt-4">Please direct questions or comments about Cantus Database to Debra Lacoste at <a href="mailto:[email protected]">[email protected]</a>.</p> | ||
</div> | ||
</div> | ||
{% 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
Oops, something went wrong.