david / djangofr

fork of djangofr

Clone pour éviter les liens cassés mais maintenant le dépôt officiel est sur http://bitbucket.org/djangofr/djangofr/

Clone this repository (size: 1.9 MB): HTTPS / SSH
$ hg clone http://code.welldev.org/djangofr

Changed (Δ47.5 KB):

raw changeset »

docs/contrib/creer-un-blog-avec-django.txt (1504 lines added, 0 lines removed)

site/djangofr/contributors/models.py (0 lines added, 4 lines removed)

Up to file-list docs/contrib/creer-un-blog-avec-django.txt:

-
Diff size exceeds threshold (47.4 KB)view raw?

Up to file-list site/djangofr/contributors/models.py:

@@ -7,10 +7,6 @@ class Contributor(models.Model):
7
7
    url = models.URLField('Site personnel', null=True, blank=True, verify_exists=False)
8
8
    bio = models.TextField('Informations', help_text='En HTML, facultatives.', null=True, blank=True)
9
9
10
    class Admin:
11
        list_display = ('name', 'email', 'url')
12
        search_fields = ('name', 'bio')
13
14
10
    class Meta:
15
11
        verbose_name = 'Contributeur'
16
12