mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-09 19:40:19 +00:00
Add Markdown support and better url tolerance for pages
This commit is contained in:
@ -2,7 +2,7 @@ import os
|
||||
from django.core.management.base import BaseCommand, CommandError
|
||||
from django.core.management import call_command
|
||||
from django.conf import settings
|
||||
from core.models import Group, User
|
||||
from core.models import Group, User, Page, PageRev
|
||||
|
||||
class Command(BaseCommand):
|
||||
help = "Set up a new instance of the Sith AE"
|
||||
@ -26,16 +26,22 @@ class Command(BaseCommand):
|
||||
Group(id=g['id'], name=g['name']).save()
|
||||
if not options['prod']:
|
||||
print("Dev mode, adding some test data")
|
||||
u = User(username='skia', last_name="Kia", first_name="S'",
|
||||
s = User(username='skia', last_name="Kia", first_name="S'",
|
||||
email="skia@git.an",
|
||||
date_of_birth="1942-06-12T00:00:00+01:00",
|
||||
is_superuser=True, is_staff=True)
|
||||
u.set_password("plop")
|
||||
u.save()
|
||||
s.set_password("plop")
|
||||
s.save()
|
||||
u = User(username='guy', last_name="Carlier", first_name="Guy",
|
||||
email="guy@git.an",
|
||||
date_of_birth="1942-06-12T00:00:00+01:00",
|
||||
is_superuser=False, is_staff=False)
|
||||
u.set_password("plop")
|
||||
u.save()
|
||||
p = Page(name='aide_syntaxe')
|
||||
p.set_lock(s)
|
||||
p.save()
|
||||
PageRev(page=p, title="Aide sur la syntaxe", author=s, content="""
|
||||
Cette page vise à documenter la syntaxe *Markdown* utilisée sur le site.
|
||||
""").save()
|
||||
|
||||
|
Reference in New Issue
Block a user