Re: [Django] #16922: Add a template-based form rendering system

2019-04-16 Thread Django
#16922: Add a template-based form rendering system
+
 Reporter:  Carl Meyer  |Owner:  nobody
 Type:  New feature |   Status:  closed
Component:  Forms   |  Version:  master
 Severity:  Normal  |   Resolution:  fixed
 Keywords:  form-rendering  | Triage Stage:  Accepted
Has patch:  1   |  Needs documentation:  0
  Needs tests:  0   |  Patch needs improvement:  1
Easy pickings:  0   |UI/UX:  0
+
Changes (by Tobias Kunze):

 * status:  new => closed
 * resolution:   => fixed


-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.2002aaa1eab4b4fe02022d1d1cd52be8%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #16922: Add a template-based form rendering system

2017-02-24 Thread Django
#16922: Add a template-based form rendering system
+
 Reporter:  Carl Meyer  |Owner:  nobody
 Type:  New feature |   Status:  new
Component:  Forms   |  Version:  master
 Severity:  Normal  |   Resolution:
 Keywords:  form-rendering  | Triage Stage:  Accepted
Has patch:  1   |  Needs documentation:  0
  Needs tests:  0   |  Patch needs improvement:  1
Easy pickings:  0   |UI/UX:  0
+

Comment (by Asif Saifuddin Auvi):

 As template based widget rendering is now supported, what need to be done
 to complete this ticket? adjust code from floppy forms?

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.d0a4fc4019d70429181643c5581684df%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #16922: Add a template-based form rendering system

2015-08-21 Thread Django
#16922: Add a template-based form rendering system
+
 Reporter:  carljm  |Owner:
 Type:  New feature |   Status:  new
Component:  Forms   |  Version:  master
 Severity:  Normal  |   Resolution:
 Keywords:  form-rendering  | Triage Stage:  Accepted
Has patch:  1   |  Needs documentation:  0
  Needs tests:  0   |  Patch needs improvement:  1
Easy pickings:  0   |UI/UX:  0
+
Changes (by timgraham):

 * owner:  auvipy =>
 * status:  assigned => new


--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.1ec4ba1fd6c88327c3b23881863925f2%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #16922: Add a template-based form rendering system

2015-03-27 Thread Django
#16922: Add a template-based form rendering system
+
 Reporter:  carljm  |Owner:  auvipy
 Type:  New feature |   Status:  assigned
Component:  Forms   |  Version:  master
 Severity:  Normal  |   Resolution:
 Keywords:  form-rendering  | Triage Stage:  Accepted
Has patch:  1   |  Needs documentation:  0
  Needs tests:  0   |  Patch needs improvement:  1
Easy pickings:  0   |UI/UX:  0
+
Changes (by auvipy):

 * status:  new => assigned
 * owner:  nobody => auvipy


--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.ae58735ac27c80770390eec74552329b%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #16922: Add a template-based form rendering system

2014-07-03 Thread Django
#16922: Add a template-based form rendering system
+
 Reporter:  carljm  |Owner:  nobody
 Type:  New feature |   Status:  new
Component:  Forms   |  Version:  master
 Severity:  Normal  |   Resolution:
 Keywords:  form-rendering  | Triage Stage:  Accepted
Has patch:  1   |  Needs documentation:  0
  Needs tests:  0   |  Patch needs improvement:  1
Easy pickings:  0   |UI/UX:  0
+

Comment (by carljm):

 Hi Tim, a few thoughts:

 1. The code that was in that GSoC branch was eventually merged into
 [https://github.com/gregmuellegger/django-floppyforms django-floppyforms]
 and has seen updates there since, so I think it would be best to approach
 this in terms of a new Django branch copying/merging the desired code from
 floppyforms.

 2. I think that #15667 (rendering widgets via templates) alone addresses
 90+% of the issues people have with customizing markup in Django forms. I
 think that ticket is much higher priority than this one, presuming the
 performance issues can be addressed, or the performance cost is deemed
 acceptable.

 3. Once we have #15667, there are two additional steps that could be taken
 to resolve this ticket: either a) a straightforward port of the existing
 `.as_ul()` and `.as_p()` methods to render via an overridable template
 instead of by constructing HTML in Python, or b) a full integration of the
 extensively customizable form-layouts system that Gregor built for GSoC.
 To be honest, I am not sure the latter needs to be in Django, I think it
 works just fine as a third-party add-on (at least until/unless that third-
 party add-on proves itself as a de facto necessity a la South, which I
 don't think it has done yet). So I would be in favor of limiting the scope
 of this ticket to (a), and only even worrying about that once #15667 is
 fixed.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.59951d0fd78125936f876c619de55bb2%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #16922: Add a template-based form rendering system

2014-07-03 Thread Django
#16922: Add a template-based form rendering system
+
 Reporter:  carljm  |Owner:  nobody
 Type:  New feature |   Status:  new
Component:  Forms   |  Version:  master
 Severity:  Normal  |   Resolution:
 Keywords:  form-rendering  | Triage Stage:  Accepted
Has patch:  1   |  Needs documentation:  0
  Needs tests:  0   |  Patch needs improvement:  1
Easy pickings:  0   |UI/UX:  0
+

Comment (by timo):

 Carl, it looks like the branch linked above doesn't exist anymore? Do we
 need to start from scratch on this?

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.9ef9a7776ceed9a6d4276fdf7d4d1d91%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #16922: Add a template-based form rendering system

2011-09-23 Thread Django
#16922: Add a template-based form rendering system
---+
   Reporter:  carljm   |  Owner:  nobody
   Type:  New feature  | Status:  new
  Milestone:   |  Component:  Forms
Version:  SVN  |   Severity:  Normal
 Resolution:   |   Keywords:  form-rendering
   Triage Stage:  Accepted |  Has patch:  1
Needs documentation:  0|Needs tests:  0
Patch needs improvement:  1|  Easy pickings:  0
  UI/UX:  0|
---+
Changes (by carljm):

 * needs_better_patch:  0 => 1
 * has_patch:  0 => 1


-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.