-
-
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.
Merge pull request #50 from questionlp/develop
Migrate from Pure CSS to Bootstrap
- Loading branch information
Showing
746 changed files
with
31,593 additions
and
5,200 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "scss"] | ||
path = scss | ||
url = https://github.com/questionlp/wwdtm-theme.git |
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
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,19 +1,68 @@ | ||
{% extends "base.html" %} | ||
{% block title %}Guests{% endblock %} | ||
|
||
{% block breadcrumb %} | ||
<div id="breadcrumb"> | ||
<ul> | ||
<li><a href="{{ url_for('main.index') }}">Home</a></li> | ||
<li>Guests</li> | ||
</ul> | ||
</div> | ||
{% endblock breadcrumb %} | ||
{% block content %} | ||
<nav aria-label="breadcrumb" id="nav-breadcrumb"> | ||
<ol class="breadcrumb"> | ||
<li class="breadcrumb-item active" aria-current="page">Guests</li> | ||
</ol> | ||
</nav> | ||
|
||
{% block synopsis %} | ||
<h2>Guests Reports</h2> | ||
{% endblock synopsis %} | ||
<h2>Guests</h2> | ||
|
||
<p> | ||
The following are the list of available reports based on data collected for | ||
Not My Job guests. | ||
</p> | ||
|
||
<div class="info"> | ||
<div class="container-fluid py-3"> | ||
<ul class="list-group report-list"> | ||
<li class="list-group-item"> | ||
<h3 class="title"> | ||
<a href="{{ url_for('guests.best_of_only_not_my_job_guests') }}">Best Of Only Not My Job Guests</a> | ||
</h3> | ||
<div class="description"> | ||
This report provides a list of Not My Job guests that have only appeared | ||
on Best Of shows and not on any regular show. These guests would have made | ||
their appearances on second live tapings when Wait Wait Don't Tell Me! | ||
travel to other cities. | ||
</div> | ||
</li> | ||
<li class="list-group-item"> | ||
<h3 class="title"> | ||
<a href="{{ url_for('guests.most_appearances') }}">Most Appearances</a> | ||
</h3> | ||
<div class="description"> | ||
This report provides a list of Not My Job guests and the number of | ||
appearances that they have made across all shows and regular shows. The | ||
list is ordered based on the number of appearances for all shows in | ||
descending order. | ||
</div> | ||
</li> | ||
<li class="list-group-item"> | ||
<h3 class="title"> | ||
<a href="{{ url_for('guests.not_my_job_scoring_exceptions') }}">Not My Job Scoring Exceptions</a> | ||
</h3> | ||
<div class="description"> | ||
This report provides a list of Not My Job guests that have a scoring exception | ||
that allowed them to win the prize for the listener contestant, even though they | ||
didn't score 2 or more points. An exception is also noted if the guest was | ||
awarded all 3 points no matter their actual score. | ||
</div> | ||
</li> | ||
<li class="list-group-item"> | ||
<h3 class="title"> | ||
<a href="{{ url_for('guests.not_my_job_three_pointers') }}">Not My Job Three Pointers</a> | ||
</h3> | ||
<div class="description"> | ||
This report provides a list of all of the Not My Job guests who answered | ||
all three Not My Job questions correctly or were awarded all three points | ||
via a scoring exception. | ||
</div> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
|
||
{% block content %} | ||
{% include "guests/_reports.html" %} | ||
{% endblock content %} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.