{% extends "admin/base.html" %} {% block title %}プラグイン管理{% endblock %} {% block content %}

価格ポリシー(ぼったくり防止)

Focomy プラグインマーケットプレイスの価格上限:

  • 買い切り: 最大 $20.00
  • サブスクリプション: 最大 $5.00/月

この上限は、ユーザーを高額なプラグインから保護するために設けられています。 価値のあるプラグインは適正価格で提供されるべきです。

審査待ちプラグイン

{{ pending_count }}
{% if pending_plugins %} {% for plugin in pending_plugins %} {% endfor %}
名前 開発者 カテゴリ 価格 送信日 操作
{{ plugin.name }}
v{{ plugin.version }}
{{ plugin.developer_name }} {{ plugin.category_label }} {{ plugin.price_display }} {{ plugin.created_at.strftime('%Y-%m-%d') }} 審査
{% else %}

審査待ちのプラグインはありません

{% endif %}

承認済みプラグイン

{{ approved_count }}
{% if approved_plugins %} {% for plugin in approved_plugins %} {% endfor %}
名前 カテゴリ 価格 DL数 評価 ステータス 操作
{{ plugin.name }} {% if plugin.is_featured %} おすすめ {% endif %} {{ plugin.category_label }} {{ plugin.price_display }} {{ plugin.download_count | default(0) }} {% if plugin.rating_average %} {{ "★" * (plugin.rating_average | int) }}{{ "☆" * (5 - plugin.rating_average | int) }} ({{ plugin.rating_count }}) {% else %} - {% endif %} 承認済み
編集
{% else %}

承認済みのプラグインはありません

{% endif %}
{% endblock %}