Skip to content

Commit e10dc54

Browse files
committedSep 12, 2024
Ply: Modified the tooling so the whole app can be a library, ie, 'ply/' alongside your main apps. Reworked settings.py for more generic applications. introduced devtools/app_dev application which includes 'create_app_dashboards' command.
1 parent 3eba885 commit e10dc54

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+228
-72
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Generated by Django 5.0.1 on 2024-08-15 01:29
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
dependencies = [
8+
("community", "0042_merge_20240724_1003"),
9+
]
10+
11+
operations = [
12+
migrations.AlterField(
13+
model_name="communitysidebarmenu",
14+
name="module",
15+
field=models.TextField(
16+
choices=[
17+
("communities.preferences", "communities.preferences"),
18+
("communities.community", "communities.community"),
19+
("communities.dashboards", "communities.dashboards"),
20+
("media.gallery.core", "media.gallery.core"),
21+
],
22+
help_text="Application to Include in the Menus",
23+
max_length=200,
24+
verbose_name="Module/AppName:",
25+
),
26+
),
27+
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Generated by Django 5.0.1 on 2024-08-15 04:52
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
dependencies = [
8+
("community", "0043_alter_communitysidebarmenu_module"),
9+
]
10+
11+
operations = [
12+
migrations.AlterField(
13+
model_name="communitysidebarmenu",
14+
name="module",
15+
field=models.TextField(
16+
choices=[
17+
("communities.preferences", "communities.preferences"),
18+
("communities.community", "communities.community"),
19+
("communities.dashboards", "communities.dashboards"),
20+
("media.gallery.core", "media.gallery.core"),
21+
("leagues.sports", "leagues.sports"),
22+
],
23+
help_text="Application to Include in the Menus",
24+
max_length=200,
25+
verbose_name="Module/AppName:",
26+
),
27+
),
28+
]

0 commit comments

Comments
 (0)
Please sign in to comment.