Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/docs/fa/panel/client_template.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: قالب خروجی اشتراک برای برنامه‌ها و ف
icon: FileCode2
---

قالب‌های کلاینت مشخص می‌کنند خروجی اشتراک برای برنامه‌های کلاینت چطور ساخته شود. این‌ها با [قالب‌های کاربر](./user_template) فرق دارند؛ قالب کاربر مقدارهای پیش‌فرض حساب را تعیین می‌کند.
قالب‌های کلاینت مشخص می‌کنند خروجی اشتراک برای برنامه‌های کلاینت چطور ساخته شود. این‌ها با [قالب‌های کاربر](../user_template) فرق دارند؛ قالب کاربر مقدارهای پیش‌فرض حساب را تعیین می‌کند.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Verify the directory structure and link target validity.

# Check if user_template.mdx exists at the expected location
echo "=== Checking for user_template.mdx ==="
find . -name "user_template.mdx" -type f

# Check the directory structure of the panel docs
echo ""
echo "=== Panel docs directory structure ==="
find ./content/docs/fa/panel -type f -name "*.mdx" | head -20

# Show the full path of client_template.mdx
echo ""
echo "=== Full path of client_template.mdx ==="
find . -name "client_template.mdx" -type f

Repository: PasarGuard/PasarGuard.github.io

Length of output: 1175


Revert the link path back to ./user_template.

Both client_template.mdx and user_template.mdx reside in ./content/docs/fa/panel/, making ./user_template the correct relative path. The change to ../user_template would resolve to the parent directory ./content/docs/fa/user_template.mdx, which does not exist, creating a broken link. This contradicts the working convention in dashboard.mdx and users.mdx, which correctly use ./user_template from the same directory.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@content/docs/fa/panel/client_template.mdx` at line 7, The link path in the
markdown content has been incorrectly changed to use the parent directory
reference. Revert the link from `../user_template` back to `./user_template`
since both the client_template and user_template files are in the same
directory. This correction will ensure the link resolves correctly and maintains
consistency with the linking convention used in other related documentation
files like dashboard and users templates.


## چه چیزهایی را تغییر می‌دهد

Expand Down