{% extends "base.html" %} {% block title %}Config · {{ app_name }}{% endblock %} {% block content %}

Configuration

Config

{% if force_password_change %}
首次登录后需要先修改密码。完成后再继续长期使用当前配置页面。
{% endif %} {% if password_change_error %}
{{ password_change_error }}
{% endif %} {% if config_error %}
{{ config_error }}
{% endif %} {% if config_saved %}
config saved to .env. Some changes may require an app restart.
{% endif %} {% if ticktick_oauth_error %}
{{ ticktick_oauth_error }}
{% endif %} {% if ticktick_oauth_notice %}
{{ ticktick_oauth_notice }}
{% endif %}
当前用户
admin

Change Password

Config

{% for section in config_sections %}
{{ section.name }} {% for field in section.fields %} {% endfor %} {% if section.name == "TickTick" %}

TickTick OAuth

{% if ticktick_oauth_ready %}

Use the saved TickTick client settings to start the authorization flow.

{% else %}

Fill in TickTick Client ID, Client Secret, and Redirect URI before starting OAuth.

{% endif %}
{% if ticktick_oauth_ready %} Authorize TickTick {% else %} Authorize TickTick {% endif %}
{% endif %}
{% endfor %}
{% endblock %}