Console : tri par nom
This commit is contained in:
parent
9560cdd574
commit
235cb0e453
3
TODO
3
TODO
@ -5,11 +5,10 @@
|
||||
* Tests sur Game
|
||||
* Ajouter des attributs à Game
|
||||
* Données initiales des consoles connues
|
||||
* Trier le champ console de Game par ordre alphabétique : Meta => order sur Console
|
||||
|
||||
# Idée
|
||||
|
||||
* Faire une apparence graphique pour afficher simplement les jeux en cours, les stats de jeux, et la liste totale des jeux ? (uikit, bulma ?)
|
||||
* Faire une API en vue d'un site web en VueJS ?
|
||||
* Inclure une récupération sur HowLongToBeat ?
|
||||
* Gérer plusieurs utilisateurs ? Si oui, comment gérer la liste des jeux par utilisateur ? => à faire dans l'interface web peut-être ?
|
||||
* Gérer plusieurs utilisateurs ? Si oui, comment gérer la liste des jeux par utilisateur ? => à faire dans l'interface web peut-être ?
|
||||
|
@ -3,6 +3,7 @@
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
@ -19,5 +20,14 @@ class Migration(migrations.Migration):
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('name', models.CharField(max_length=254)),
|
||||
],
|
||||
options={'ordering': ('name',)},
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='Game',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('name', models.CharField(max_length=254)),
|
||||
('console', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='games.Console')),
|
||||
],
|
||||
),
|
||||
]
|
||||
|
@ -1,24 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11 on 2017-08-16 20:05
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('games', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Game',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('name', models.CharField(max_length=254)),
|
||||
('console', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='games.Console')),
|
||||
],
|
||||
),
|
||||
]
|
@ -10,6 +10,9 @@ class Console(models.Model):
|
||||
def __str__(self):
|
||||
return '%s' % self.name
|
||||
|
||||
class Meta:
|
||||
ordering = ('name',)
|
||||
|
||||
|
||||
class Game(models.Model):
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user