-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix sus, add cache for institutions, add edge counts
- Loading branch information
1 parent
4ade099
commit 707c10a
Showing
6 changed files
with
155 additions
and
60 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
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,37 @@ | ||
{% extends "admin/base_site.html" %} | ||
{% load i18n static bootstrap3 %} | ||
|
||
{% block content %} | ||
|
||
<style> | ||
.table td { | ||
padding: 1rem; | ||
border: 1px solid black; | ||
} | ||
</style> | ||
|
||
<div id="content-main"> | ||
<table class="table table-striped table-hover"> | ||
<tr> | ||
<td>SUs by Year</td> | ||
<td> | ||
<table> | ||
{% for year, values in su_usage_data.items %} | ||
<tr> | ||
<td>{{year }}</td> | ||
<td> | ||
<ul> | ||
{% for key, value in values.items %} | ||
<li>{{ key }} - {{ value }}</li> | ||
{% endfor %} | ||
</ul> | ||
</td> | ||
</tr> | ||
{% endfor %} | ||
</table> | ||
</td> | ||
|
||
</tr> | ||
</table> | ||
</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