Create views and templates to render the views for a list of games And for it to show if server is running for the game selected. Signed-off-by: Pratyush Desai <pratyush.desai@liberta.casa>
21 lines
459 B
Python
21 lines
459 B
Python
# Generated by Django 5.1.5 on 2025-04-16 08:59
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("webpanel", "0007_game_thumbnail"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="game",
|
|
name="thumbnail",
|
|
field=models.ImageField(
|
|
blank=True, null=True, upload_to="media/game_thumbnails/"
|
|
),
|
|
),
|
|
]
|