Re: How to approach

2021-11-15 Thread Zaid Ullah
es >> >> El jue, 4 de nov. de 2021 a la(s) 10:59, Trippy Samurai ( >> someshkan...@gmail.com) escribió: >> >>> Hi there, >>> I am new to django and have a problem statement am not quite sure how to >>> approach this,Please help me, >>> &g

Re: How to approach

2021-11-15 Thread Kasper Laudrup
On 15/11/2021 20.13, Trippy Samurai wrote: The conclusion is that i have 8 html pages  4 for developer and 4 for manager which have slight changes in the table headers i.e Opened,accepted.completed,closed, aftter using listview all of them come into one html file because of one model i need the

Re: How to approach

2021-11-15 Thread Trippy Samurai
com > wrote: > >> Hi Trippy. >> >> Be more specific about what part is causing you troubles >> >> El jue, 4 de nov. de 2021 a la(s) 10:59, Trippy Samurai ( >> someshkan...@gmail.com) escribió: >> >>> Hi there, >>> I am new

Re: How to approach

2021-11-15 Thread Gabo LaTo
Hi Trippy. Be more specific about what part is causing you troubles El jue, 4 de nov. de 2021 a la(s) 10:59, Trippy Samurai ( someshkandukuri...@gmail.com) escribió: > Hi there, > I am new to django and have a problem statement am not quite sure how to > approach this,Pleas

Re: How to approach

2021-11-05 Thread Trippy Samurai
21 at 07:54:14 UTC+5:30 riis@gmail.com wrote: > i agree with kasper, but one tip is to start with the user class. > check out django.contrib.auth.base_user > > Den tors 4 nov. 2021 kl 18:36 skrev Kasper Laudrup : > >> On 04/11/2021 14.54, Trippy Samurai wrote: >> > Hi t

Re: How to approach

2021-11-04 Thread Robin Riis
i agree with kasper, but one tip is to start with the user class. check out django.contrib.auth.base_user Den tors 4 nov. 2021 kl 18:36 skrev Kasper Laudrup : > On 04/11/2021 14.54, Trippy Samurai wrote: > > Hi there, > > I am new to django and have a problem statement am not qu

Re: How to approach

2021-11-04 Thread Sebastian Jung
. Nov. 2021, 14:59: > Hi there, > I am new to django and have a problem statement am not quite sure how to > approach this,Please help me, > > > Phase 1 Objectives: > >1. Use the existing project setup you have already created You may >completely reset Django

Re: How to approach

2021-11-04 Thread Kasper Laudrup
On 04/11/2021 14.54, Trippy Samurai wrote: Hi there, I am new to django and have a problem statement am not quite sure how to approach this,Please help me, I think you should approach it just as it has been described, i.e. one step at a time. Kind regards, Kasper Laudrup -- You

Re: How to approach

2021-11-04 Thread Aashish Kumar
It’s very easy to perform in Django do it yourself On Thu, 4 Nov 2021 at 7:29 PM, Trippy Samurai wrote: > Hi there, > I am new to django and have a problem statement am not quite sure how to > approach this,Please help me, > > > Phase 1 Objectives: > >1. Use the ex

How to approach

2021-11-04 Thread Trippy Samurai
Hi there, I am new to django and have a problem statement am not quite sure how to approach this,Please help me, Phase 1 Objectives: 1. Use the existing project setup you have already created You may completely reset Django models/database/codebase if needed but make sure you keep

Re: Raw SQL - How to approach paging and lazy fetching

2017-06-21 Thread Kevin Yu
) >> >> Then in my template, I have this: >> {% for br in special_branches %} >> >> > link="/files/{{build.image_path}}/build{{build.build_number}}/"> >> {{br.name}} >> {{br.branchpoint}} >>

Re: Raw SQL - How to approach paging and lazy fetching

2017-06-16 Thread Jani Tiainen
{{br.name}} > {{br.branchpoint}} > {{ br.source|upper }} > {{br.updated_at}} > {{br.built_at}} > > {% endfor %} > > The current problem is this would create a very long page... I am > wondering how to approach this pro

Re: Raw SQL - How to approach paging and lazy fetching

2017-06-16 Thread Kevin Yu
{{br.name}} > {{br.branchpoint}} > {{ br.source|upper }} > {{br.updated_at}} > {{br.built_at}} > > {% endfor %} > > The current problem is this would create a very long page... I am > wondering how to a

Re: Raw SQL - How to approach paging and lazy fetching

2017-06-15 Thread Jani Tiainen
} {{br.built_at}} {% endfor %} | The current problem is this would create a very long page... I am wondering how to approach this problem so that I can have different page on the template, and say 100 result per page, when i click the second page, then django will fetch re

Raw SQL - How to approach paging and lazy fetching

2017-06-15 Thread Kevin Yu
emplate, I have this: {% for br in special_branches %} {{br.name}} {{br.branchpoint}} {{ br.source|upper }} {{br.updated_at}} {{br.built_at}} {% endfor %} The current problem is this would create a very long page... I am won

Re: How to approach this problem?

2014-01-09 Thread Rafael Durán Castañeda
You could also check http://yergler.net/blog/2009/09/27/nested-formsets-with-django/ HTH, Rafael El 09/01/2014, a las 01:05, César García Tapia escribió: > django-nested-inlines doesn't seem to work with Django 1.6 > > In case anyone is interested, I solved it with the info in this very valu

Re: How to approach this problem?

2014-01-08 Thread César García Tapia
django-nested-inlines doesn't seem to work with Django 1.6 In case anyone is interested, I solved it with the info in this very valuable post: http://yergler.net/blog/2013/09/03/nested-formsets-redux/ Hooray for Nathan Yergler :-) El domingo, 5 de enero de 2014 19:58:22 UTC+1, Avraham Serour

Re: How to approach this problem?

2014-01-05 Thread Avraham Serour
it looks like you need nested inlines, which I believe is not possible yet ( https://code.djangoproject.com/ticket/9025) in the meantime you can try using this ( https://github.com/Soaa-/django-nested-inlines) On Sun, Jan 5, 2014 at 5:07 PM, César García Tapia wrote: > Could anybody help me with

Re: How to approach this problem?

2014-01-05 Thread César García Tapia
Could anybody help me with this problem, please? I know it's not very polite to ask twice, but I'm stuck on this, and I really need to solve it. Excuse me for the insistence. C. El viernes, 3 de enero de 2014 01:48:23 UTC+1, César García Tapia escribió: > > I'm trying to solve a problem, but I

How to approach this problem?

2014-01-02 Thread César García Tapia
I'm trying to solve a problem, but I have no idea how to face it. I need some help :-) I have a model hierarchy like this: class Task(models.Model): name = models.CharField(max_length=255) number_of_steps = models.IntegerField() class StepGroup(models.Model): tas