-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 1.0.1 - View status of Coin's via the admin panel, plus vario…
…us small changes - Add `health` function to coin_handlers.base.BaseManager - if children don't implement it, it defaults to a list of symbols, with status "Health data not supported". Child classes are able to customise the table columns to fit their specific needs. - Implemented `health` method for both SteemEngineManager and BitcoinManager - Created a "Coin Handler Health/Status" admin panel view, which lists health/status information about each coin in the database, using the `health` method of it's Manager class. - Created a "clear caches" view, allowing admin's to clear the Django cache backend. Currently only used by the Coin Handler status view. - Override Django admin's base_site.html and index.html - Changed admin title to CryptoToken Converter Admin - Added a custom pages table, with a link to "Coin Handler Health/Status" - Extended Django admin site class to add custom URLs - Better comments for settings.py, with some general clean-up of the file.
- Loading branch information
1 parent
6fc66c6
commit bf22ab0
Showing
10 changed files
with
379 additions
and
51 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
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,9 @@ | ||
{% extends "admin/base.html" %} | ||
|
||
{% block title %}CryptoToken Converter Admin{% endblock %} | ||
|
||
{% block branding %} | ||
<h1 id="site-name"><a href="{% url 'admin:index' %}">CryptoToken Converter Admin</a></h1> | ||
{% endblock %} | ||
|
||
{% block nav-global %}{% endblock %} |
Oops, something went wrong.