This commit is contained in:
James Socol 2010-04-27 16:08:18 -07:00
Родитель 2546841c42
Коммит f65c9fd527
4 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -2,6 +2,7 @@ from django import forms
from .models import Post, Thread
class ReplyForm(forms.ModelForm):
"""Reply form for forum threads."""

Просмотреть файл

@ -42,7 +42,7 @@ class Post(ModelBase):
author = models.ForeignKey(User)
created = models.DateTimeField(auto_now_add=True, db_index=True)
updated = models.DateTimeField(auto_now=True, db_index=True)
class Meta:
ordering = ['created']

Просмотреть файл

@ -1,4 +1,3 @@
def test_new_post_updates_thread():
"""Saving a new post in a thread should update the last_post key in
that thread to point to the new post."""

Просмотреть файл

@ -5,6 +5,7 @@ urlpatterns = patterns('forums.views',
url(r'^/reply$', 'reply', name='forums.reply'),
url(r'^/(?P<forum_slug>[\w\-]+)/(?P<thread_id>\d+)$',
'posts', name='forums.posts'),
url(r'^/(?P<forum_slug>[\w\-]+)/new$', 'new_thread', name='forums.new_thread'),
url(r'^/(?P<forum_slug>[\w\-]+)/new$', 'new_thread',
name='forums.new_thread'),
url(r'^/(?P<forum_slug>[\w\-]+)$', 'threads', name='forums.threads'),
)