User Anthony - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T01:44:26Zhttp://stackoverflow.com/feeds/user/54423http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1355925/how-do-i-reference-the-underlying-model-of-a-django-model-form-object/1414411#14144110Answer by Anthony for How do I reference the underlying model of a django model form object?Anthony2009-09-12T05:53:35Z2009-09-12T05:53:35Z<p>I posted this question because I had a model with two fields:</p>
<pre><code>LabelField
ValueField
</code></pre>
<p>and I wanted to display a form that used "LabelField" as the label while allowing the user to update "ValueField." My first thought was to somehow assign the value of "LabelField" into the label attribute of "ValueField."</p>
<p>What I ended up doing instead was to set the "disabled" attribute of "LabelField" as true:</p>
<pre><code>form.fields['labelfield'].widget.attrs['disabled'] = True
</code></pre>
<p>This allows me to display "labelfield" without letting the users update it. I can think of at least two other ways to accomplish this same goal, but this is what I'm using for now given my level of familiarity with Django et al.</p>
http://stackoverflow.com/questions/1355925/how-do-i-reference-the-underlying-model-of-a-django-model-form-object1How do I reference the underlying model of a django model form object?Anthony2009-08-31T05:28:16Z2009-09-12T05:53:35Z
<p>When creating a form, I wish to use one field on the model as a label to go with another field that I'm updating.</p>
<p>I've overridden the BaseModelFormSet with a new <strong>_init__</strong> method, like this:</p>
<pre><code>class BaseMyFormSet(BaseModelFormSet):
def __init__(self, *args, **kwargs):
super(BaseMyFormSet, self).__init__(*args, **kwargs)
for form in self.forms:
form.fields['value'].label = ???
</code></pre>
<p>How do I reference the other field in the model so that I can use it as the label value?</p>
<p>(Alternatively, if there's a better way to override the label in the way I need, that would be very helpful as well.)</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/803807/new-unix-account-shell-setup1New Unix Account Shell Setup [closed]Anthony2009-04-29T19:08:26Z2009-04-29T19:51:32Z
<p>What are the first things you do to personalize your shell on a Unix machine? What are the minimum personalized environment settings that you need to function effectively?</p>
<p>oops, sorry, not a regular here and didn't realize the rule...it's a wiki now...</p>
http://stackoverflow.com/questions/488928/how-do-i-get-back-into-real-programming-should-i8How do I get back into *real* programming? Should I?Anthony2009-01-28T19:10:39Z2009-04-15T06:45:32Z
<p>I have not been on hiatus. I currently make a good living implementing an ERP product. The problem is that the most complicated algorithm we ever have to work on is adding up a bunch of columns.</p>
<p>I'm not saying there are no challenges involved, it's just that the challenges are no longer interesting to me. I graduated with a computer science degree, and we worked on cool algorithms. I built a compiler. Programming was fun. Now, programming is boring. I have to keep myself interested by focusing on other facets of the job.</p>
<p>Lately, I've been dabbling in a lot of side work off hours - iPhone apps, blogging platforms, checking out open source projects, etc. Is it possible to make the switch to doing some of this stuff that looks like more fun to me? Is it really more fun? Is there some way to combine my interests with my occupation?</p>
http://stackoverflow.com/questions/489555/what-database-tool-to-use-on-linux-to-read-an-as-400-database/505497#5054970Answer by Anthony for What database tool to use on Linux to read an as/400 database?Anthony2009-02-02T23:50:20Z2009-02-02T23:50:20Z<p>They ended up using iSql to connect to the database. Thanks for all your suggestions.</p>
http://stackoverflow.com/questions/489555/what-database-tool-to-use-on-linux-to-read-an-as-400-database1What database tool to use on Linux to read an as/400 database?Anthony2009-01-28T21:50:47Z2009-02-02T23:50:20Z
<p>From Linux (Red Hat dist), we need to read an AS400 database. We have the ODBC driver to connect, what's the best query tool?</p>
http://stackoverflow.com/questions/490183/which-open-source-erp-project-is-the-best-for-joining-as-a-contributor2Which open source ERP project is the best for joining as a contributor?Anthony2009-01-29T01:31:18Z2009-01-29T01:43:49Z
<p>I've found a bunch, now I need to figure out which one is worth spending my free time on. (<a href="http://en.wikipedia.org/wiki/List_of_ERP_software_packages" rel="nofollow">Wikipedia list</a>)</p>
http://stackoverflow.com/questions/488928/how-do-i-get-back-into-real-programming-should-i/489932#4899320Answer by Anthony for How do I get back into *real* programming? Should I?Anthony2009-01-28T23:47:54Z2009-01-28T23:47:54Z<p>Thanks for all the answers, everyone. Lots of food for thought here. Oh, and this being my first question on here...I have to say that this website rocks it.</p>
http://stackoverflow.com/questions/1355925/how-do-i-reference-the-underlying-model-of-a-django-model-form-object/1414411#1414411Comment by Anthony on How do I reference the underlying model of a django model form object?Anthony2009-09-16T19:17:51Z2009-09-16T19:17:51ZWhich is the same issue as is discussed in this thread:
<a href="http://stackoverflow.com/questions/1105507/make-a-foreign-key-field-in-a-django-form-read-only-and-still-enable-the-form-to" rel="nofollow" title="make a foreign key field in a django form read only and still enable the form to">stackoverflow.com/questions/1105507/…</a>http://stackoverflow.com/questions/1355925/how-do-i-reference-the-underlying-model-of-a-django-model-form-object/1414411#1414411Comment by Anthony on How do I reference the underlying model of a django model form object?Anthony2009-09-15T07:22:11Z2009-09-15T07:22:11ZThis doesn't work. The 'disabled' attribute prevents updates to the underlying model.http://stackoverflow.com/questions/1355925/how-do-i-reference-the-underlying-model-of-a-django-model-form-object/1357058#1357058Comment by Anthony on How do I reference the underlying model of a django model form object?Anthony2009-09-12T04:43:34Z2009-09-12T04:43:34Z(Sorry for the late response, I was out of town this past week.)
It's actually the former. In your example above, I would need the actual value of "yourfield" to be the label for the field called "value." So, something like (renaming the variables for clarity):
namefield = opts.get_field("namefield")
form.fields['quantityfield'].label = namefield.value
I will try fiddling around, using the samples you give to see if I can figure this out.
thankshttp://stackoverflow.com/questions/427009/how-to-hide-a-primary-key-field-in-a-django-form/430050#430050Comment by Anthony on How to hide a primary key field in a Django formAnthony2009-04-20T03:51:46Z2009-04-20T03:51:46ZWhat would you do if the form is creating the instance of the model?http://stackoverflow.com/questions/488928/how-do-i-get-back-into-real-programming-should-i/488940#488940Comment by Anthony on How do I get back into *real* programming? Should I?Anthony2009-01-29T17:56:42Z2009-01-29T17:56:42Zanswer selected for awesomenesshttp://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/46426#46426Comment by Anthony on What is the single most influential book every programmer should read?Anthony2009-01-29T05:12:12Z2009-01-29T05:12:12ZMy favorite class.http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/34526#34526Comment by Anthony on What is the single most influential book every programmer should read?Anthony2009-01-29T05:11:26Z2009-01-29T05:11:26ZThis is the book that came to my mind when I read the question. Great book.http://stackoverflow.com/questions/489555/what-database-tool-to-use-on-linux-to-read-an-as-400-database/490333#490333Comment by Anthony on What database tool to use on Linux to read an as/400 database?Anthony2009-01-29T03:33:27Z2009-01-29T03:33:27Zthanks! in my case, best just means anything at this pointhttp://stackoverflow.com/questions/490183/which-open-source-erp-project-is-the-best-for-joining-as-a-contributor/490207#490207Comment by Anthony on Which open source ERP project is the best for joining as a contributor?Anthony2009-01-29T02:29:43Z2009-01-29T02:29:43ZI see your point about open source ERPs being a hard sell. I don't really care too much about the project's marketability at this point - just as long as it is something to which I can contribute to get my feet wet.http://stackoverflow.com/questions/489555/what-database-tool-to-use-on-linux-to-read-an-as-400-databaseComment by Anthony on What database tool to use on Linux to read an as/400 database?Anthony2009-01-29T02:20:41Z2009-01-29T02:20:41ZSorry, I don't have any more info. The best I can do is come up with an analogy: If I had a Windows PC and I needed to view a foreign computer database via ODBC, I'd use MS Access to link to it. What is the equivalent of MS Access on Linux?http://stackoverflow.com/questions/489555/what-database-tool-to-use-on-linux-to-read-an-as-400-databaseComment by Anthony on What database tool to use on Linux to read an as/400 database?Anthony2009-01-29T01:38:44Z2009-01-29T01:38:44ZActually, best doesn't even need apply. I'm just looking for anything! Our company is interfacing with a third party system that runs on Linux. They need to be able to read our database from their system. Any Linux ODBC database tool would work. http://stackoverflow.com/questions/488928/how-do-i-get-back-into-real-programming-should-i/489932#489932Comment by Anthony on How do I get back into *real* programming? Should I?Anthony2009-01-29T01:36:59Z2009-01-29T01:36:59ZThanks. All the answers have been good, but I've been holding out for the perfect one. Can I "accept" more than one?http://stackoverflow.com/questions/488928/how-do-i-get-back-into-real-programming-should-i/488940#488940Comment by Anthony on How do I get back into *real* programming? Should I?Anthony2009-01-28T23:45:35Z2009-01-28T23:45:35ZI checked out the website...the problems remind me of the good old days. Did you design your own language too, or did you implement something that already exists?