Bookmarker Site

2013-01-27 Thread Ranjith Kumar
Hello All,
I wanted to build bookmarking web application using django, in this app
user can not only bookmark the site also they scrape few datas from the
bookmarked page.

Looking for good python/django tools which can help me achieve this aim

Thank you!

-- 
Cheers,
Ranjith Kumar K,
Chennai.

http://ranjithtenz.wordpress.com

-- 
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...@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[Jobs] - Python/Django Developer Position

2013-04-10 Thread Ranjith Kumar
Hello All,

Greetings

A Job has been created in group India: Senior Python Programmers - Urgently
Required | Hakett

We welcome talented people with the following skills to join in our family.

We are looking for a Strong and Highly Skilled Python Developers.

Job Title : Python Developers
No. of Opening(s) : 2
Educational qual. : BE/MCA
Skills : Python, Django, HTML, TPL, JQuery, Backbone.js
Years of experience : +1
Job Description/Roles & Responsibilities
Minimum 2 years of experience in developing web applications
Minimum 1 years of experience with Python and Django
Excellent communication skill and written skill.
Experience in payment gateway integration in Python and Django.
Experience working on technologies like jQuery and TPL.
Knowledge in TDD and BDD
Knowledge in Mysql, Postgresql, MongoDB
Deployment experience on Amazon EC2, Heroku servers preferred.

Interested people can send your resumes to ranjitht...@gmail.com

Job Location : Chennai

-- 
Cheers,
Ranjith Kumar K,
Chennai.

http://ranjithtenz.wordpress.com

-- 
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 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




How to redorder app

2013-09-06 Thread Ranjith Kumar
Hello,
I trying to reorder the app in django admin, is there anyways we can do it
via admin.py?

Thank you!

-- 
Cheers,
Ranjith Kumar K,
Chennai.

http://ranjithtenz.wordpress.com

-- 
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 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.


Re: How to redorder app

2013-09-07 Thread Ranjith Kumar
Thanks Guys, but I'm aware of reordering fields... I'm problem is how to 
reorder models in django admin

On Saturday, 7 September 2013 07:25:19 UTC+5:30, Germán wrote:
>
> If you mean reordering *apps*, as in which order the different apps are 
> arranged, I think there is no simple way.
>
> Reorder the models for an specific app ? Same answer.
>
> On Friday, September 6, 2013 3:16:59 AM UTC-5, Ranjith Kumar wrote:
>>
>> Hello,
>> I trying to reorder the app in django admin, is there anyways we can do 
>> it via admin.py?
>>
>> Thank you!
>>
>> -- 
>> Cheers,
>> Ranjith Kumar K,
>> Chennai.
>>
>> http://ranjithtenz.wordpress.com
>>
>>
>> 

-- 
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 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.


Django Class-Based CreateView and UpdateView with multiple inline formsets

2015-01-10 Thread Ranjith Kumar
eturn HttpResponseRedirect(self.get_success_url())

def form_invalid(self, form, ingredient_form, instruction_form):
return self.render_to_response(
self.get_context_data(form=form,
  ingredient_form=ingredient_form,
          instruction_form=instruction_form))

Thanks in advance.

-- 
Cheers,
Ranjith Kumar K,
Chennai.

http://ranjithtenz.wordpress.com

-- 
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 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAAr0NR83xzUs3R9U%3DEvTeb51Kywu_5rFmB6-6fCxpsh%3Dhm2Ynw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Abridged summary of django-users@googlegroups.com - 23 updates in 11 topics

2017-06-21 Thread Ranjith Kumar
Hello All,
On Django admin when I tried to update the existing data I’m getting an error,

AttributeError: 'str' object has no attribute '__iter__'


models.py

class SSPDrive(models.Model):

drive_year  = 
models.DateField(verbose_name='Drive year', null=True, blank=True, 
help_text="Enter drive year.")

class Meta:
verbose_name= "SSP Drive"
verbose_name_plural = "SSP Drives"

def __str__(self):
return 
str('SSP'+str(self.drive_year.year)[-2:]+'T'+str(self.drive_year.year+1)[-2:])

class SSPDriveAdmin(admin.ModelAdmin):

save_as = True

class Meta:
model = SSPDrive

admin.site.register(SSPDrive, SSPDriveAdmin)

Can someone help me out, why am I getting this error…

> On 21-Jun-2017, at 6:37 PM, django-users@googlegroups.com wrote:
> 
> django-users@googlegroups.com 
> 
> Google Groups 
> 
>
> 
>
> Today's topic summary  <>
> View all topics 
> 
> import different entries using filter  - 2 Updates
> Non-primary auto-incrementing field with Postgres 
>  - 2 Updates
> User Based role in Django  - 6 Updates
> Django Import/Export ManyTo Many  - 1 Update
> url patterns question  - 3 Updates
> Django phone number validation  - 2 Updates
> If you have multiple custom users - what should you set AUTH_USER_MODEL to? 
>  - 1 Update
> [django] Excluir un ítem de un dropdown en el admin de django 
>  - 1 Update
> Django app to manage PHP-composer repositories  - 
> 2 Updates
> Django website  - 2 Updates
> [django-channels] Issues with model post_save and Group.Send() 
>  - 1 Update
>  <>import different entries using filter  
> 
>   
> Melvyn Sopacua : Jun 20 10:37PM +0200 
> 
> On Monday 19 June 2017 21:11:23 jon stan wrote:
>  
> > service__icontains='fast food')
>  
> > but i cant get it to work correctly. i get 'burger-place' for the
> > name, prod, and service variables for ...more 
> > 
> >  
> Derek : Jun 21 03:12AM -0700 
> 
> Your clue is in the word "variable" that you used. The "variables" for a 
> Django model are its fields; so what you are looking for is a value stored 
> in your model's field.
>  
> e.g. 
>  
> service = ...more 
> 
>  
> Back to top  <>Non-primary auto-incrementing field 
> with Postgres  
> 
>   
> Scot Hacker : Jun 20 10:40PM -0700 
> 
> One strategy might be to:
>  
> 1) Bring in the data under a different column name ('old_id' ?)
> 2) In a single migration, drop the default ID column, rename old_id to id, 
> and give it primary_key=True ...more 
> 
>  
> Melvyn Sopacua : Jun 21 11:43AM +0200 
> 
> On Monday 19 June 2017 16:29:48 Thomas Hauk wrote:
> > serial field, and then run a SQL command like "SELECT
> > SETVAL('some_table_field_id_seq', 10)". I think. :)
>  
> > Does Django expose ...more 
> > 
> >  
> Back to top  <>User Based role in Django  
> 
>   
> Mannu Gupta : Jun 21 12:45AM -0700 
> 
> I want to make a role based user in Django like the following :- 
>  
> User with Subscription level 0 will have some feature and some basic fields 
> like first name , last name etc. 
> ...more 
> 
>  
> Jani Tiainen : Jun 21 11:11AM +0300 
> 
> Hi,
>  
> We have been using user groups for that. And then we check and filter out
> based on given group(s).
>  
> ...more 
> 
>  
> Mannu Gupta : Jun 21 01:44PM +0530 
> 
> Hi ,
> Will I be able to trace if user upgrde the subscription level ?
>  
> Manni
>  
> ...more 
> 
>  
> Jani Tiainen : Jun 21 11:18AM +0300 
> 
> Well its your code, so yes if you write code that does it.
>  
> It doesn't happen magically for you.
>  
> ...more 
>