, 11:43 am, josebrwn wrote:
> Hi, Here's my save method:
> def save(self):
> super(Entry, self).save()
> print "hello world from models"
> signals.send_pingback.send(sender=self.__class__,
> instance=self)
>
any errors, which you think are a fault of django-
> trackback, then please open an issue
> athttp://code.google.com/p/django-trackback/issues/list
>
> - arne
>
> On Sep 24, 12:47 am, josebrwn wrote:
>
> > I'm wondering if anybody who's using trackback can answ
I'm wondering if anybody who's using trackback can answer a simple
question that has me stumped. I added the signals code to my class'
save method, and it runs, it just doesn't seem to do anything. I have
the code running on two sites and when I save entries that point at
one another, nothing ev
If Debug = True, you can have a flatpage with URL = "/" that is
handled by FlatpageFallbackMiddleware:
MIDDLEWARE_CLASSES = (
...
'django.contrib.flatpages.middleware.FlatpageFallbackMiddleware',
)
If Debug = False, the flatpage will 404. Is there a way to have a
flatpage as your site's
Hi,
I'm looking for a straightforward way to override the default ordering
of the date-based generic view, in order to allow
'featured' entries to percolate to the top in a coltrane blog. So:
info_dict = {
'queryset': Entry.objects.all(),
'date_field': 'pub_date',
}
urlpatterns = patte
thank you!
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to
django-users+unsubscr
Hi,
I would like to have a list of recent flatpages. I'm doing something
like:
class LatestCmsNode(template.Node):
def render(self, context):
context['latest_cms'] = FlatPage.objects.all()[:2]
return ''
but this orders the results by url (title), and wh
Hi, I'm trying to pass the current year the date based view
archive_year using the "url" template tag, and I'm stuck trying to get
the current time to resolve. this works just fine:
{% now
"Y" %}
but this (as well as many variations)
{% now "Y"
%}
gets:
NoReverseMatch: Reverse for 'cms.coltr
8 matches
Mail list logo