Skip to content

palosdemoing/pitble

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

https://coveralls.io/repos/openwebinars-django/pitble/badge.png https://badge.fury.io/py/pitble.png https://pypip.in/d/pitble/badge.png

Pitble is a python microblog

  • In your settings:
INSTALLED_APPS = (
    ...
    'pitble',
    'bootstrap3',
)


TEMPLATE_CONTEXT_PROCESSORS = (
    ...
    'pitble.context_processors.i18n',

)


MIDDLEWARE_CLASSES = (
    ...
    'django.middleware.locale.LocaleMiddleware',
    'pitble.middleware.LocaleMiddleware',
)

AUTH_USER_MODEL = 'pitble.User'

LOGIN_URL = '/sign-in/'
  • In your urls:
urlpatterns = patterns('',
    ...
    url(r'^', include('pitble.urls')),
)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 90.2%
  • JavaScript 5.9%
  • CSS 3.9%