mirror of
https://gitlab.com/SIGBUS/nyaa.git
synced 2024-12-22 08:49:59 +00:00
Move hardcoded urls into config.
This commit is contained in:
parent
3165389d52
commit
68c2c965a4
|
@ -21,7 +21,7 @@ SECRET_KEY = '***'
|
|||
|
||||
# Prefix for running multiple sites, user table will not be prefixed.
|
||||
SITE_FLAVOR = 'nyaa' # 'nyaa' or 'sukebei'
|
||||
|
||||
EXTERNAL_URLS = {'fap':'***', 'main':'***'}
|
||||
# for recaptcha and email verification:
|
||||
# keys for localhost. Change as appropriate when actual domain is registered.
|
||||
RECAPTCHA_PUBLIC_KEY = '***'
|
||||
|
|
|
@ -84,9 +84,9 @@
|
|||
</li>
|
||||
<li><a href="{% if rss_filter %}{{ url_for('home', page='rss', **rss_filter) }}{% else %}{{ url_for('home', page='rss') }}{% endif %}">RSS</a></li>
|
||||
{% if config.SITE_FLAVOR == 'nyaa' %}
|
||||
<li><a href="https://sukebei.nyaa.si/">Fap</a></li>
|
||||
<li><a href="//{{ config.EXTERNAL_URLS['fap'] }}">Fap</a></li>
|
||||
{% elif config.SITE_FLAVOR == 'sukebei' %}
|
||||
<li><a href="https://nyaa.si/">Fun</a></li>
|
||||
<li><a href="//{{ config.EXTERNAL_URLS['main'] }}">Fun</a></li>
|
||||
{% endif %}
|
||||
{% if g.user.is_moderator %}
|
||||
<li><a href="{{ url_for('view_reports') }}">Reports</a> </li>
|
||||
|
|
Loading…
Reference in a new issue