diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-10-01 14:49:09 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-10-01 14:49:09 -0700 |
commit | 6cec32572282a786e57d9f59785bcaef7f1a0e2a (patch) | |
tree | 0159c7b733b6f5c28377bc850df49cf27c5fd014 | |
parent | 222d7f5488f30c46333e5298fd37587994e58e58 (diff) | |
download | fatcat-6cec32572282a786e57d9f59785bcaef7f1a0e2a.tar.gz fatcat-6cec32572282a786e57d9f59785bcaef7f1a0e2a.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 838e795d..67c9fc24 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> |