A New Design for the "Congratulations!" Page

2017-04-19 Thread Federico Capoano
Looks like a great improvement for newcomers! I hope to see this included to 
Django.

Federico

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To post to this group, send email to django-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/django-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/cdff13ec-bf9e-406e-addf-ec2c78b2a8bd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: A New Design for the "Congratulations!" Page

2017-04-19 Thread Adam Johnson
A massive +1 from me too, but I'll not make any comments on design :)

On 19 April 2017 at 09:58, Federico Capoano 
wrote:

> Looks like a great improvement for newcomers! I hope to see this included
> to Django.
>
> Federico
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django developers  (Contributions to Django itself)" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to django-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-developers.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-developers/cdff13ec-bf9e-406e-addf-
> ec2c78b2a8bd%40googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Adam

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To post to this group, send email to django-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/django-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/CAMyDDM0vXAj0p3YZZbmOhCwa4G4%3Dm9xA1pgtLFuhxC7do%3DmEHQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Error while doing migrations for a new table

2017-04-19 Thread Mohamed Ghariani
I created a bug on code.djangoproject.com 


On Tuesday, 18 April 2017 13:12:05 UTC+1, Mohamed Ghariani wrote:
>
> Hello,
> I tried to apply migrations for a new model. The model was used in a form 
> used in the admin so the migrations failed.
>
> He is a sample code i wrote which gave me the same errors.
>
>
> models.py
> from django.db import models
>
> class App(models.Model):
> name = models.CharField(max_length=50)
>
> forms.py
> from django import forms
>
> from app.models import App
>
>
> class AppForm(forms.ModelForm):
> name = ((elem.id, elem.name ) for elem in App.objects.all())
>
> admin.py
> from django.contrib import admin
>
> from app.forms import AppForm
> from app.models import App
>
>
> class AppAdmin(admin.ModelAdmin):
> search_fields = ('id', 'name')
> form = AppForm
> list_display = ('id', 'name')
>
> admin.site.register(App, AppAdmin)
>
>
> After running  ./manage.py makemigrations i got this error
>
> django.db.utils.OperationalError: no such table: app_app
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To post to this group, send email to django-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/django-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/8ad0a967-40c2-443a-852b-1f199dd04192%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Error while doing migrations for a new table

2017-04-19 Thread Ramiro Morales
On Tue, Apr 18, 2017 at 6:52 AM, Mohamed Ghariani <
ghariani.mohamed...@gmail.com> wrote:

> Hello,
> I tried to apply migrations for a new model. The model was used in a form
> used in the admin so the migrations failed.
>

Please don't post questions like this (about using Django) to this list
(its topic is about developing Django). Use the django-users or the #django
IRC channel list for that.


Regards,

-- 
Ramiro Morales
@ramiromorales

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To post to this group, send email to django-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/django-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/CAO7PdF-jOx9yzbmvrXYEPYDQ2cujTM0s9JaYms1JSadq1z1aeg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: A New Design for the "Congratulations!" Page

2017-04-19 Thread Babatunde Akinyanmi
I also give a big +1 to this. I'll really love to see this in django

On 19 Apr 2017 11:05, "Adam Johnson"  wrote:

> A massive +1 from me too, but I'll not make any comments on design :)
>
> On 19 April 2017 at 09:58, Federico Capoano 
> wrote:
>
>> Looks like a great improvement for newcomers! I hope to see this included
>> to Django.
>>
>> Federico
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django developers  (Contributions to Django itself)" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-developers+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-developers@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-developers.
>> To view this discussion on the web visit https://groups.google.com/d/ms
>> gid/django-developers/cdff13ec-bf9e-406e-addf-ec2c78b2a8bd%
>> 40googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> --
> Adam
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django developers (Contributions to Django itself)" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to django-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-developers.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-developers/CAMyDDM0vXAj0p3YZZbmOhCwa4G4%
> 3Dm9xA1pgtLFuhxC7do%3DmEHQ%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To post to this group, send email to django-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/django-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/CA%2BWjgXOypFP-cokOaK9mmYZJPZ8%3DbdvvMkUUUXEt3wHdnWtT1Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.