diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-10-01 14:49:09 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-10-12 15:33:30 -0400 |
commit | 3ebe4eb9b546b25d23f6b044d5c6cd883d148e8c (patch) | |
tree | de1fc9f6251edc68be3392b6b7267a052a4a9816 | |
parent | 619410dd1cf19b1d4dc9b00b5b0c31e253264f8e (diff) | |
download | fatcat-3ebe4eb9b546b25d23f6b044d5c6cd883d148e8c.tar.gz fatcat-3ebe4eb9b546b25d23f6b044d5c6cd883d148e8c.zip |
point status links to uptimerobot deep urls
-rw-r--r-- | python/fatcat/templates/base.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/fatcat/templates/base.html b/python/fatcat/templates/base.html index 617450c2..708b17bf 100644 --- a/python/fatcat/templates/base.html +++ b/python/fatcat/templates/base.html @@ -63,8 +63,8 @@ <div class="ui horizontal inverted small divided link list"> <a class="item" href="/">fatcat!</a> <a class="item" href="/about">About</a> - <a class="item" href="https://guide.{{ config.FATCAT_DOMAIN }}/Sources</a> - <a class="item" href="#TODO">Status</a> + <a class="item" href="https://guide.{{ config.FATCAT_DOMAIN }}/sources.html">Sources</a> + <a class="item" href="{% if config.FATCAT_DOMAIN == "fatcat.wiki" %}https://stats.uptimerobot.com/GM9YNSrB0{% elif config.FATCAT_DOMAIN =="qa.fatcat.wiki" %}https://stats.uptimerobot.com/WQ8wAUREA{% else %}#{% endif %}">Status</a> <a class="item" href="https://guide.{{ config.FATCAT_DOMAIN }}/bulk_exports.html">Bulk Exports</a> <a class="item" href="https://git.bnewbold.net/fatcat/">Source Code (<code>{{ config.GIT_REVISION.decode() }}</code>)</a> </div> |