Skip to content

Commit

Permalink
Merge branch 'develop' into issue-160
Browse files Browse the repository at this point in the history
  • Loading branch information
thejoeejoee authored Aug 17, 2023
2 parents 26b5d96 + de17871 commit 1d07fb1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions fiesta/apps/plugins/plugin_template/apps.py-tpl
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
from django.utils.translation import gettext_lazy as _
from apps.plugins.plugin import PluginAppConfig
from apps.plugins.plugin import BasePluginAppConfig


class {{ camel_case_plugin_name }}Config(PluginAppConfig):
class {{ camel_case_plugin_name }}Config(BasePluginAppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'apps.{{ plugin_name }}'
title = _('{{ plugin_name }}')
verbose_name = _('{{ plugin_name }}')
emoji = ""
description = _('{{ plugin_name }} is one of the plugins.')

configuration_model = '{{ plugin_name }}.{{ camel_case_plugin_name }}Configuration'

Expand Down

0 comments on commit 1d07fb1

Please sign in to comment.