Jquery Calendar with Django

2014-05-01 Thread coded kid
Hello, I would like to know where I can get a jquery calendar that's similar to airbnb's own. Kindly help me out. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email

Re: Libraries for Facebook login

2013-11-22 Thread coded kid
Use django_social_auth by Arneb. It rocks! On Friday, 22 November 2013 06:02:30 UTC+1, sk wrote: > > I have seen few posts on various Facebook libraries that can be used with > Django to allow a user to login using Facebook credentials. Having tried a > few of them, I did not find any examples

Django Files Not Downloading Properly

2013-11-22 Thread coded kid
I want users to be able to download file from my django web app. I wrote the below codes, but when I download a file, the file will turn into an error file. It won't open and the total size of the file would be 0 bytes. Models: class Emov(models.Model):

Re: django deploy structure

2013-06-28 Thread coded kid
Man, use GIT. Push to your git repo. Clone from git through your production server. It's easy to do. Hope this helps? :) On Thursday, 27 June 2013 09:08:13 UTC+1, Mulianto wrote: > > Hi, > > If cannot use git, for copy the source you can use rsync or use fabric to > selective upload the file

Re: Advanced Search in django

2013-06-28 Thread coded kid
Try django watson https://github.com/etianen/django-watson/ On Thursday, 27 June 2013 09:33:22 UTC+1, Harjot Mann wrote: > > On Thu, Jun 27, 2013 at 1:16 PM, Peith Vergil > > wrote: > > Try using django-haystack. It's a nice Django app, very easy to use, and > > with

Error Using ModelForm Wizard For Editing in Django

2013-06-27 Thread coded kid
You can check the code properly here: http://pastebin.com/1Ygq9RZs 1. I have two seperate forms and I used Django ModelForm wizard to create the form. I can create and save the form.Also I created a seperate view for editing of the form, but When I wanted to edit the same form, a

Re: Point System in django

2013-06-13 Thread coded kid
imes, you > need to set rules in the User model to not allow negative Point values, > not allow the user to press the Play the button if they don't have enough > Points, etc. > > > > On Wednesday, June 12, 2013 1:38:45 PM UTC-4, coded kid wrote: >> >>

Re: Point System in django

2013-06-13 Thread coded kid
values, >> not allow the user to press the Play the button if they don't have enough >> Points, etc. >> > > You don't have to use Javascript, you can come with a solutions that > doesn't involve javascript. > > On Wednesday, June 12, 2013 1:38:45 PM UTC-4, coded

Re: Point System in django

2013-06-12 Thread coded kid
How do you mean? Please explain further. On Monday, 10 June 2013 14:05:56 UTC+1, Amirouche wrote: > > > > Le lundi 10 juin 2013 12:59:05 UTC+2, coded kid a écrit : >> >> what is the best way to implement this? Users will pay a certain fee >> and get so

Point System in django

2013-06-10 Thread coded kid
what is the best way to implement this? Users will pay a certain fee and get some amount of points (100points) and for every video the user watch, like 30points will be deducted. How can I go about this? is there a package for point system in django? -- You received this message because you are

Re: Best Pratice To Implement User Types

2013-06-05 Thread coded kid
every usergroup has. > > A user has a PaymentHistory, with several PaymentEntries. And the last > PaymentEntry knows the related group Membership. > > Just my 2 cents. > Frank > > > > > Am 04.06.2013 08:51, schrieb coded kid: > > I'm building a django

Best Pratice To Implement User Types

2013-06-04 Thread coded kid
I'm building a django project and I want to have free users and premium users. I've been hitting my head on the best way to implement this. Users will be able to login through the same login page and redirect to different pages after logging in based on their user type. My main challenge is

Intergrating on Interswitch Webpay

2013-06-04 Thread coded kid
Hello, has anyone intergrate interswitch webpay on his or her django website before? I'm kinda confused on the doc, because in the docs, the tutorials is centered around ecommerce sites and I'm building an enterprise product and things like product_id, product_type don't exist. So I would like to

Django South- Push to repo or not?

2013-02-04 Thread coded kid
Please I would like to know if it's advisable to push South migration folder in development environment to git repo before cloning it from repo to production server. Or one should delete the South migration folder and push to git repo. Hope you get my point? -- You received this message

Re: Unable to get an object value using get method in Django

2012-12-30 Thread coded kid
Yeah, its a name of a field in my form. I want to the value automatically since I don't know the name of the place the user will choose. I tried adding your correction but i'm getting error. On Dec 31, 2:33 am, Bill Freeman <ke1g...@gmail.com> wrote: > On Sun, Dec 30, 2012 at 7:11 PM,

Re: Star Rating System In Django

2012-12-30 Thread coded kid
Thanks! Agon works perfectly! On Sunday, 30 December 2012 14:46:24 UTC+1, coded kid wrote: > > The developer for agon rating is no more working on it and I guess it > won't work nice . > > Simple ratings is not working out for me. Don't know if there's a > JavaScript

Unable to get an object value using get method in Django

2012-12-30 Thread coded kid
I want to get an object value from a model. After trying the get() method, I've been unable to make it work.And I'm getting the below error. I have a page that display the name of a place to users, so if a user see a place he likes, he will go ahead and fill the form.And in the form, I want to get

Re: Star Rating System In Django

2012-12-30 Thread coded kid
tp://agon-ratings.readthedocs.org/en/latest/usage.html > > -or- > > https://github.com/dcramer/django-ratings > > -or- > > https://github.com/coleifer/django-simple-ratings > > On Mon, Dec 31, 2012 at 12:03 AM, coded kid > <duffle...@gmail.com> > wrote:

Star Rating System In Django

2012-12-30 Thread coded kid
Anyone know about any good package or tutorial or plugin for building a star rating system in django? I tried using dcramer/django rating but It's not working perfectly. If you know of any plugin, package on how to build a star rating system, kindly post it below. Thanks! -- You received this

Re: Django web app pages not displaying

2012-11-20 Thread coded kid
> "Server Not Found"?? > > On 11/20/12, coded kid <duffle...@gmail.com > wrote: > > I just deployed my django website, I tried visiting some pages on the > > site and it's not displaying. I have three web browsers on my PC, I > > tried visiting tho

Django web app pages not displaying

2012-11-20 Thread coded kid
I just deployed my django website, I tried visiting some pages on the site and it's not displaying. I have three web browsers on my PC, I tried visiting those pages through the other two web browsers but the pages are not displaying. I asked a friend of mine in Poland to check those pages out, he

Re: Javascript Image Hollover In Django

2012-08-31 Thread coded kid
When I followed your tutorial, the images were reshaped only and when I place my mouse on any of the thumbnail images it won't display the large image. How can I go about it? On Friday, 31 August 2012 15:40:56 UTC+1, Amyth wrote: > > Hey, > > dun think this is really Django related, but still

Javascript Image Hollover In Django

2012-08-31 Thread coded kid
When a user place his mouse or click on any image thumbnails, I want the particular thumbnail image to display in large size above the set of thumbnails images on the same page in my django template. I tried the below Javascript code but it's not working. I'm a noob in javascript. If there's any

Re: Haystack with Whoosh Not Redirecting.

2012-06-25 Thread coded kid
m a submitted form, > which doesn't make sense for a detail view. > > _Nik > > On 6/25/2012 10:32 AM, coded kid wrote: > > (r'^find/$', findme), > > > > So how will i input the arguments? any example? thanks. > > > > Nikolas Stevenson-Molnar w

Re: Haystack with Whoosh Not Redirecting.

2012-06-25 Thread coded kid
guments. Also, what does your urls.py file look like? > > _Nik > > On 6/25/2012 10:14 AM, coded kid wrote: > > I successfully installed whoosh and made it work with Haystack. Things > > are working fine but I'm facing one problem which is; after searching > > for a k

Haystack with Whoosh Not Redirecting.

2012-06-25 Thread coded kid
I successfully installed whoosh and made it work with Haystack. Things are working fine but I'm facing one problem which is; after searching for a keyword and it print out the results, when I click on the result(title), It won't redirect me to the page of the keyword I clicked on, it's just

Haystack with Solr- Schema Parsing Failed

2012-06-23 Thread coded kid
I'm trying to rebuild_index, but after building the schema ( manage.py build_solr_schema ) I copy and paste the output in the schema.xml file. After restarting the server and rebuild_index ( manage.py rebuild_index ) I'm getting the below error. I've been trying to get the problem, yet no success!

Python IDLE

2012-05-28 Thread coded kid
I'm in a big mess now, I've lost my projects due to this errror. I'm on windows, This is how I encounter the problem; I try to edit my settings.py in IDLE. After right clicking on the files, I choose open program with these default file. I choose idle window bat file, and I clicked Ok. It didn't

Re: Save Tweepy tweets in database

2012-05-08 Thread coded kid
creating the model is not a problem but the problem is how to make use of it in views.py. You have any idea? On Tuesday, 8 May 2012 11:19:27 UTC+1, coded kid wrote: > > I want to save users tweets in my db (MySQL) But I'm finding it > difficult to get how I will go about it. The mai

Save Tweepy tweets in database

2012-05-08 Thread coded kid
I want to save users tweets in my db (MySQL) But I'm finding it difficult to get how I will go about it. The main problem is that, I didn't create any models for it, I just input the below codes in my views,since I'm getting users tweets through tweepy api. The question now is, how will I save

Django Pagination Not Working!

2012-05-06 Thread coded kid
I'm trying to paginate a page in order to display five statuses per page. After inputting these codes, it fails to paginate. Below are the codes for pagination and updating of status in my django app. Views: def qask(request): extra_data_context={} #if there's nothing in

ModelForm Validation Error

2012-04-17 Thread coded kid
I want to make sure users fill all the fields before they are redirected to the next page. And if they don’t fill the fields it should raise an error telling them to fill the fields before they proceed. So to do that, I wrote the codes below. But the problem I’m facing is that when I didn’t fill

Form Validation

2012-04-15 Thread coded kid
I want my form to validate the fields so that only users who fill the form field should be redirected to the next page. If a user fails to fill any of the form field, the user should be taken to the same page where it will output validation error so that the user can fill the fields. I tried

List Users

2012-04-05 Thread coded kid
I’m trying to iterate through user list member in tweepy. When I tried it out, it’s not displaying any user objects! The webpage is just blank. Below are my codes: Views: def listmem(request): consumer_key="XXX" consumer_secret="XXX" access_token="XXX" access_token_secret="XXX"

Users Tweepy

2012-04-05 Thread coded kid
Hi guys, please how can I get a user username in tweepy? I hope you get my point? Thanks! -- 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

Tweepy Image and Link display

2012-03-30 Thread coded kid
Hi guys, how can I get users twitter handle with link and display their image in my django app. What I mean is this, I want the users username should be clickable (so that when I click on it it will direct me to the user profile), and display the user profile image by their update. I hope you get

Re: Django With Tweepy

2012-03-28 Thread coded kid
Thanks guys! @Pachnis How do you mean by Django API queries? On Tuesday, 27 March 2012 08:59:28 UTC+1, coded kid wrote: > > Hi guys, I’m confused on how to make this work. I want to stream > user’s tweets in my django app using tweepy. I’ve written the > streaming code but the

Tweepy Not Displaying

2012-03-28 Thread coded kid
Hi guys, I want to display user’s timeline in my django app but it’s not working. It only display a white blank page! I’m using Tweepy. Below are my codes: Views.py import tweepy def tweetstream(request): consumer_key="" consumer_secret="XXX" access_token="XXX"

Django With Tweepy

2012-03-27 Thread coded kid
Hi guys, I’m confused on how to make this work. I want to stream user’s tweets in my django app using tweepy. I’ve written the streaming code but the problem I’m facing is: should I paste the code in views.py and input- return

Tweepy Status Error

2012-03-25 Thread coded kid
Hi guys, I been trying to iterate over status, but I’m getting this error: Traceback : File “”, line 2, in NameError: name ‘process_status’ is not defined. Below is the codes: from tweepy import Cursor for status in Cursor(api.user_timeline).items(): process_status(status) What I’m I

Loading Of Tweets

2012-03-23 Thread coded kid
Hi guys, I;ve been facing some problem with loading of tweets in my django project. The question now is; how can I load users tweets in my django site. I'm using omab/django social auth to authenticate users. Anyone have the idea? Thanks! -- You received this message because you are subscribed

A good Twitter Package

2012-03-16 Thread coded kid
Hi guys, does anyone know about a good django package for twitter authorization? I tried using omab/django social auth, but the twitter authorization is not working for me. Would love to hear your opinion! Thanks! -- You received this message because you are subscribed to the Google Groups

TypeError

2012-03-14 Thread coded kid
Hi guys, I want this code to display list of friends of a user, list of friends to add, after writing the codes and testing it out, I’m getting this error: TypeError at /userpage/ user_page() takes exactly 2 arguments (1 given) Request Method: GET Request URL:http://127.0.0.1:8000/userpage/

Re: Displaying Updates

2012-03-14 Thread coded kid
What's your algorithm? > > On 3/13/12, coded kid <duffleboi...@gmail.com> wrote: > > Hi Guys, how can I make users who are following each other view their > > status update on their walls? In my project, users can follow and > > unfollow each other but the problem I’m fa

Displaying Updates

2012-03-13 Thread coded kid
Hi Guys, how can I make users who are following each other view their status update on their walls? In my project, users can follow and unfollow each other but the problem I’m facing is that, both of them can’t see each other statuses on their wall. I’m using a caffinehit/django follow package

Haystack Solr Error

2012-03-04 Thread coded kid
I'm trying to rebuild_index, so after inputting manage.py rebuild- index , I'm getting: Removing all documents in your index because you said so. fail to clear Solr index: [Errno 10061] No connection could be made because the target machine actively refused it. What I'm I doing wrong? -- You

Haystack and Xapian

2012-03-01 Thread coded kid
Hi guys, I want to use Django Haystack with Xapian on my django site for search function. After setting all the necessary settings. I went ahead to input: manage.py rebuild_index , after inputting 'y' I'm getting an error saying: No module named xapian_backend. I can see the xapian backend module

Django TypeError-/SEARCH/

2012-03-01 Thread coded kid
Hi guys, I want to create a search form for my django site. So after creating it, I input the keyword I want to search, after clicking on “Search” I’m getting: TypeError at /search/ Related Field has invalid lookup: icontains Request Method: GET Request URL:

Re: Django ExtraField

2012-02-27 Thread coded kid
So you mean I will override the template? Since I will be making the correction is the models. On Feb 25, 3:12 pm, Carlos Leite <cadu...@gmail.com> wrote: > On Fri, Feb 24, 2012 at 2:14 PM, coded kid <duffleboi...@gmail.com> wrote: > > Sorry, How will I set that? is

Re: Django ExtraField

2012-02-24 Thread coded kid
Sorry, How will I set that? is it from the template? On Feb 24, 4:29 pm, Marcos Moyano <marcosmoy...@gmail.com> wrote: > You can set a hidden input widget to the form field. > > Rgds, > Marcos > > > > > > > > > > On Fri, Feb 24, 2012 at 11:26 AM,

Django ExtraField

2012-02-24 Thread coded kid
Hi guys, How can I get rid of the field that's beside django comment textarea? (the field, if users fill the field[honeypot] the users comment will be marked as spam) I hope you get my point? Below is my code: comments/form.html {% if user.is_authenticated %} {% csrf_token %}

Re: Django Comments-Redirecting

2012-02-23 Thread coded kid
to load the page where you > are collecting the comments. > > Don't mean to be harsh but what were you thinking? > > django.contrib.comments.views.comments.comment_done by default > redirects to the "Thanks for your comment" page. > > On 2/23/12, coded kid <duffleboi...

Re: Django and social network

2012-02-23 Thread coded kid
I guess my idea can help you out! Install Django 1.3. After installing, try and download packages like omab/social_auth that will enable users to log in through facebook, twitter etc. Also download agon_ratings that will enable users to rate. You can get those packages from djangopackages.com. Use

Django Comments-Redirecting

2012-02-23 Thread coded kid
Hi guys, how can I get rid of users being directed to the “Thanks you for your comment” page after commenting in Django site? I users to be redirected to the same page they commented. I’m using Django comments. I’ve tried adding: But it’s not working. Below is codes in my comment/form.html

Re: Django TypeError

2012-02-22 Thread coded kid
(r'^comments/posted/$', 'myweb.meekapp.views.comment_posted' ), On Feb 22, 3:37 pm, Ejah <ej.huijb...@gmail.com> wrote: > How does your urls.py look? > > On 22 feb, 15:28, coded kid <duffleboi...@gmail.com> wrote: > > > > > > > > >

Re: Django TypeError

2012-02-22 Thread coded kid
/127.0.0.1:8000/2012/2/20/6/ Any idea? On Feb 22, 3:15 pm, Thomas Rega <tho...@googlemail.com> wrote: > Am 22.02.12 15:11, schrieb coded kid: > > >   return u"/%i/%i/%i/sol/%i/%s/" % (self.date.year, > > self.date.month, self.date.day, self.id) > > 5 != 4 &

Re: Django TypeError

2012-02-22 Thread coded kid
Thanks for the reply! But it's still not working. Should I put 5 !=4 below the return in models.py? On Feb 22, 3:15 pm, Thomas Rega <tho...@googlemail.com> wrote: > Am 22.02.12 15:11, schrieb coded kid: > > >   return u"/%i/%i/%i/sol/%i/%s/" % (self.date.year, > &

Django TypeError

2012-02-22 Thread coded kid
Hi Guys, I’m trying to override django comments by not redirecting users to “Thanks For The Comment” page. After inserting the codes, I’m getting an Error: TypeError at /comments/posted/ not enough arguments for format string Request Method: GET Request URL:

Adding Of Users

2012-02-19 Thread coded kid
Hi guys, I'm trying to make the below script let users follow each other. Just like adding friends up.So that users will be able to follow each other. When I click the 'follow' button in a user profile, instead of it to take me to the users wall, it will only redirect me to the same page(user

Anyone Tested this? Please Participate.

2012-02-17 Thread coded kid
Hello, I’m not getting the usage of the package (Django-Follow) in template, because I keep getting error. What I did is this; I want to use it for following of users. Just like how friends add each other up or follow each other on sites like twitter. So I registered it with UserProfile in

Django Location- Does anyone know about this?

2012-02-15 Thread coded kid
Hi Guys, Does anyone knows about any good django package for maps? or for locating of areas, states, streets? Please kindly answer if you do. Thanks. BTW: I've tried using Django easy_maps but it's not working. If you've used easy_maps before, kindly comment below. Just want to ask you a few

Re: Comments Not Displaying

2012-02-15 Thread coded kid
Thanks bro! Just got the logic! Cheers. @Daniel keep up the good work, even if you once hit me in the ass on StackOverflow! :) On Feb 14, 3:47 pm, Tom Evans <tevans...@googlemail.com> wrote: > On Tue, Feb 14, 2012 at 2:45 PM, coded kid <duffleboi...@gmail.com> wrote: > >

Re: Comments Not Displaying

2012-02-14 Thread coded kid
Below the status. I'm not sure if I fixed this. How will I make it display comment? Please. On Feb 14, 12:32 pm, Daniel Roseman <dan...@roseman.org.uk> wrote: > On Tuesday, 14 February 2012 12:02:58 UTC, coded kid wrote: > > > Hi guys, I'm using Django.contrib.comments in my Dja

Comments Not Displaying

2012-02-14 Thread coded kid
Hi guys, I'm using Django.contrib.comments in my Django web app. After installing django comments and setting up all other things, I decided to give it a try by commenting on my status. I commented and I was redirected to /comment/posted/. But the problem I'm facing is that, Django comments is

Re: Comments Link- How to?

2012-02-13 Thread coded kid
il.com> wrote: > Please Rephrase. I don't get the part of "comment link name" > > On 2/13/12, coded kid <duffleboi...@gmail.com> wrote: > > > Hi Guys, How can I link to “Django Comment form”, so that when a user > > clicks on the “Comment Link Name” It will displa

Comments Link- How to?

2012-02-13 Thread coded kid
Hi Guys, How can I link to “Django Comment form”, so that when a user clicks on the “Comment Link Name” It will display the Comment Form on the same page with the post. I hope you get my point? If you do please answer and if you don’t ask me to explain further. -- You received this message

Re: Comments form customization

2012-02-13 Thread coded kid
Hey Fabio, How do you get your comment form to display? Been fighting with this for the past 5hrs. Please any idea? Thanks. On Feb 13, 11:12 am, Fabio Natali wrote: > On 02/13/2012 10:52 AM, Vovk Donets wrote: > > > It's not really great solution, but maybe it will give you a

Comment post not allowed (400)

2012-02-13 Thread coded kid
Hey guys, when I include the django comments form in the template I want to use it, After visting the page, I can only see "POST" and "PREVIEW" button and the form itself is not showing. So I clicked on the 'POST" button to see what's next. After clicking it, I get this: Comment post not allowed

Re: Django Comments Form not Displaying

2012-02-12 Thread coded kid
14:16:26 -0200: > > > > > > > On 12/02/12 coded kid said: > > > > Below is the codes in my comments/form.html > > > {% load comments i18n %} > > > {% csrf_token > > > %} > > >   {% if next %} > > value="

Django Comments Form not Displaying

2012-02-12 Thread coded kid
Hi guys, please help me out with django-comments form. I added : 'django.contrib.comments', to INSTALLED APPS (r'^comments/', include('django.contrib.comments.urls')), to urls.py and I copied the default templates from django.contrib.comments.templates.comments to my app templates directory.

What Can I use?

2012-02-11 Thread coded kid
Hey guys, anyone know about a django package I can use for comment in django site? The one I see is Django-comment but it's not maintained anymore. What other one do you know about? Thanks. -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: Finding It Hard To Make It Work!

2012-02-08 Thread coded kid
te jquery and > django as well. > > Thomas > > > > > > > > > > On Wed, Feb 8, 2012 at 10:11 AM, coded kid <duffleboi...@gmail.com> wrote: > > How bro? Don't know Ajax. Can you please put me through? I'm a > > Nigerian bro! > >

Re: Finding It Hard To Make It Work!

2012-02-08 Thread coded kid
How bro? Don't know Ajax. Can you please put me through? I'm a Nigerian bro! On Feb 8, 10:02 am, Babatunde Akinyanmi <tundeba...@gmail.com> wrote: > Use AJAX or asynchronous programming > > On 2/8/12, coded kid <duffleboi...@gmail.com> wrote: > > > > > > &g

Re: Somebody please attend to me

2012-02-07 Thread coded kid
What I really mean is that I want users to post update and make other users comment on them in django site. Not to Facebook. On Feb 7, 12:24 pm, coded kid <duffleboi...@gmail.com> wrote: > The first link take me to google page. Is that the post? > > On Feb 7, 11:22 am, coded

Re: No Module named URLS

2012-02-07 Thread coded kid
ai <akaar...@gmail.com>: > > > > > > > > > On Feb 6, 5:09 pm, coded kid <duffleboi...@gmail.com> wrote: > >> Hey guys, I’m getting an error when trying to visit my admin page: > >> TemplateSyntaxError at /admin/ > >> Caught ImportErro

Re: Somebody please attend to me

2012-02-07 Thread coded kid
The first link take me to google page. Is that the post? On Feb 7, 11:22 am, coded kid <duffleboi...@gmail.com> wrote: > Thanks so much kelly! You rock. Will give it a try! > > On Feb 7, 4:18 am, Kelly Nicholes <kelbolici...@gmail.com> wrote: > > > > > T

Re: Somebody please attend to me

2012-02-07 Thread coded kid
systemhttps://docs.djangoproject.com/en/1.2/ref/contrib/comments/example/ > Here's one called > django-facebook-commentshttps://bitbucket.org/sirpengi/django-facebook-comments > > On Jan 23, 4:38 am, coded kid <duffleboi...@gmail.com> wrote: > > > > >  Please how ca

Django-Simple-Friends

2012-02-05 Thread coded kid
Hey guys, please how can I go about creating templates for django simple friends? I've been trying my best, yet no success. Really need your help. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Re: Help Me With omab/django-socialauth

2012-02-05 Thread coded kid
, 10:46 am, Kevin <kveron...@gmail.com> wrote: > > > > > > > Did you take a look at the example project? > > > > > > > > > >https://github.com/omab/django-social-auth/tree/master/example > > > > > > > >

Re: Django Friends

2012-02-05 Thread coded kid
atm > ___ > Life is short, Live it hard. > > On 5 February 2012 15:18, coded kid <duffleboi...@gmail.com> wrote: > > > > > Thanks bro. I'm not using pinax, so how can I go about it? -- You received this message because you are subscribed to the Google Groups

Re: Django Friends

2012-02-05 Thread coded kid
ful for you. > Thanks, > Anoop Thomas Mathew > > atm > ___ > Life is short, Live it hard. > > On 5 February 2012 14:12, coded kid <duffleboi...@gmail.com> wrote: > > > > > Hey guys, please do you know of any django package that can be used by > >

Django Friends

2012-02-05 Thread coded kid
Hey guys, please do you know of any django package that can be used by users to add friends in django site? Thanks. -- 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

Re: I need a package.

2012-02-04 Thread coded kid
ry 3, 2012 at 3:16 AM, coded kid wrote: > > Anyone knows about a django package that can be use by users to send > > private messages to each other? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group,

Re: Help Me With omab/django-socialauth

2012-02-04 Thread coded kid
github.com/omab/django-social-auth/tree/master/example > > > > > > Compare it with your own project, or even use this example project as > > > > > a base for your own project. > > > > > > If all your urls.py contains is "url(r'', > > > > >

Re: Help Me With omab/django-socialauth

2012-02-04 Thread coded kid
l(r'', > > > include('social_auth.urls')), " and no other definitions, this could > > > be why it redirecting, as it cannot find the URL it's suppose to land > > > on.  Check the output in the Windows command window and see what URLs > > > are being req

Re: Help Me With omab/django-socialauth

2012-02-03 Thread coded kid
as it cannot find the URL it's suppose to land > on.  Check the output in the Windows command window and see what URLs > are being requested and see if there's anything odd. > > On Feb 3, 2:12 am, coded kid <duffleboi...@gmail.com> wrote: > > > > > Just keep get

I need a package.

2012-02-03 Thread coded kid
Anyone knows about a django package that can be use by users to send private messages to each other? -- 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

Re: Help Me With omab/django-socialauth

2012-02-03 Thread coded kid
r api key is > wrong? > > On 02.02.2012 11:22, coded kid wrote: > > > > > I'm getting a redirect loop error. Whats the probs? > > > On Feb 1, 1:22 pm, Thorsten Sanders<thorsten.sand...@gmx.net>  wrote: > >> Some sort of error traceback/description wo

Re: Help Me With omab/django-socialauth

2012-02-02 Thread coded kid
I'm getting a redirect loop error. Whats the probs? On Feb 1, 1:22 pm, Thorsten Sanders <thorsten.sand...@gmx.net> wrote: > Some sort of error traceback/description would be helpful, from a quick > look it seems all right. > > On 01.02.2012 13:23, coded kid wrote: > > &g

Help Me With omab/django-socialauth

2012-02-01 Thread coded kid
Hey guys, I'm facing a huge problem with omab/django/socialauth. After setting all the necessary settings, I clicked on the “Enter using Twitter” link on my homepage, it couldn’t redirect me to where I will enter my twitter username and password. Below are my settings. In settings.py

Re: django docs __unicode__ return u'%s %s

2012-01-27 Thread coded kid
Hey Petr, thats what I'm trying to say. Just that I didnt construct my sentences well. Thanks. JohnA wrote: > Just to fill in some more info, __unicode__ methods are also part of > core python and just happen to appear a lot in django code because of > its preference for 16-bit unicode strings

Re: django docs __unicode__ return u'%s %s

2012-01-24 Thread coded kid
If I may say, 'u' makes it easy to return variable with any hassle. And %s rep each string in your script. I think there should be other ways to go about this. Hope you get my point? kenneth gonsalves wrote: > On Tue, 2012-01-24 at 18:33 -0600, James Bennett wrote: > > On Tue, Jan 24, 2012 at

Help Me With This Form

2012-01-24 Thread coded kid
Hi guys, I’m trying to let this form display but it’s not displaying in my browser. When I open up the browser, only a blank page shows up. How can I go about it? Below are my codes: In models.py from django.db import models from django.forms import ModelForm, Textarea, HiddenInput from

Somebody please attend to me

2012-01-23 Thread coded kid
Please how can I get user post update, make their friends comment and share the update in django? Just like the way FB update is. I hope you get my point? Thanks so much -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group,

Re: How can I go about this?

2012-01-22 Thread coded kid
cs/twitter-clone > > Cheers > Don > > > > On 22/01/2012, at 6:11 PM, coded kid wrote: > > > Hey guys, please I want you to give me a brief on how I can go about > > making users post status update for their friends to see. Just like > > how its been done on twitt

How can I go about this?

2012-01-22 Thread coded kid
Hey guys, please I want you to give me a brief on how I can go about making users post status update for their friends to see. Just like how its been done on twitter. Where you tweet whats happening and after tweeting its will display your status with reply, retweet and favourite button below.

Re: Having Headache With LoginForm

2012-01-21 Thread coded kid
On Jan 21, 2:35 pm, coded kid <duffleboi...@gmail.com> wrote: > Thanks for the help bro. > > How can I make the form verify users name and password before login > in. So that if the user wants to login in with wrong data, the form > will tell the user to login in with the c

Re: Having Headache With LoginForm

2012-01-21 Thread coded kid
'views.Login')`. Again, that's not tested, but it should > work, I think. > > Happy Coding! > > Mark > > > > > > > > On Wed, Jan 18, 2012 at 6:09 PM, coded kid <duffleboi...@gmail.com> wrote: > > Thanks bro. Don't you think I should import Login in u

Re: Having Headache With LoginForm

2012-01-18 Thread coded kid
gt; > > Is that template mainpage.html? > > > > I'm not sure exactly what you mean is happening. When you open the login > > page it takes you back to the home page? Also, I would add in the my_login > > view that if they are already logged in to redirect them to another page &

Re: Having Headache With LoginForm

2012-01-17 Thread coded kid
in. > Chicken and egg. > > > > On Tue, Jan 17, 2012 at 2:34 PM, coded kid <duffleboi...@gmail.com> wrote: > > > Thorsten Sanders wrote: > > > With using > > > > @login_required decorator the user needs to be logged in to allow > > execution, don't

  1   2   >