active questions tagged admin - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T16:57:50Zhttp://stackoverflow.com/feeds/tag/adminhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/480665/django-apache-modpython-admin-css-not-appearing-with-admin-tables3Django Apache/mod_python Admin CSS not appearing with admin tablesAna2009-01-26T17:42:29Z2009-12-18T06:39:20Z
<p>I have Windows XP/Django/apache/mod_python working on localhost. All parts are working with the exception of the admin CSS not rendering. The admin works, but no html formatting. I've made additions in:</p>
<pre><code>settings.py
INSTALLED_APPS
'django.contrib.admin',
urls.py
from django.contrib import admin
admin.autodiscover()
(r'^admin/(.*)', admin.site.root),
conf/http.conf
<Location "/">
SetHandler python-program
PythonPath "['C:/django'] + sys.path"
PythonHandler django.core.handlers.modpython
SetEnv DJANGO_SETTINGS_MODULE mysite.settings
PythonDebug On
</Location>
<Location "/cpssite/">
SetHandler python-program
PythonHandler django.core.handlers.modpython
SetEnv DJANGO_SETTINGS_MODULE myapplication.settings
PythonInterpreter /myapplication
PythonDebug On
</Location>
</code></pre>
<p>I'm stumped. Is there more code I should have added somewhere?</p>
http://stackoverflow.com/questions/1824267/limit-foreign-key-choices-in-select-in-an-inline-form-in-admin1Limit foreign key choices in select in an inline form in adminmightyhal2009-12-01T06:01:18Z2009-12-15T23:30:06Z
<p>Edited :-) Hopefully a bit clearer now.</p>
<p>The logic is of the model is: </p>
<ul>
<li>A <code>Building</code> has many <code>Rooms</code></li>
<li>A <code>Room</code> may be inside another <code>Room</code> (a closet, for instance--ForeignKey on 'self') </li>
<li>A <code>Room</code> can only in inside of another <code>Room</code> in the same building (this is the tricky part) </li>
</ul>
<p>Here's the code I have: </p>
<pre><code>#spaces/models.py
from django.db import models
class Building(models.Model):
name=models.CharField(max_length=32)
def __unicode__(self):
return self.name
class Room(models.Model):
number=models.CharField(max_length=8)
building=models.ForeignKey(Building)
inside_room=models.ForeignKey('self',blank=True,null=True)
def __unicode__(self):
return self.number
</code></pre>
<p>and:</p>
<pre><code>#spaces/admin.py
from ex.spaces.models import Building, Room
from django.contrib import admin
class RoomAdmin(admin.ModelAdmin):
pass
class RoomInline(admin.TabularInline):
model = Room
extra = 2
class BuildingAdmin(admin.ModelAdmin):
inlines=[RoomInline]
admin.site.register(Building, BuildingAdmin)
admin.site.register(Room)
</code></pre>
<p>The inline will display only rooms in the current building (which is what I want). The problem, though, is that for the <code>inside_room</code> drop down, it displays all of the rooms in the Rooms table (including those in other buildings).</p>
<p>In the inline of <code>rooms</code>, I need to limit the <code>inside_room</code> choices to only <code>rooms</code> which are in the current <code>building</code> being displayed by the main form. </p>
<p>I can't figure out a way to do it with either a <code>limit_choices_to</code> in the model, nor can I figure out how exactly to override the admin's inline formset properly (I feel like I should be somehow create a custom inline form, pass the building_id of the main form to the custom inline, then limit the queryset for the field's choices based on that--but I just can't wrap my head around how to do it).</p>
<p>Maybe this is too complex for the admin site, but it seems like something that would be generally useful... </p>
<p>Thanks again for your help!</p>
http://stackoverflow.com/questions/1885477/django-messages-framework0Django: Messages Frameworkorwellian2009-12-11T02:32:22Z2009-12-11T02:48:14Z
<p>So I have installed the new Messages Framework. The documentation mentions using a css class called "messages" in the template. But I can't seem to find any such css class in any of the files in the trunk.
What I want to do is, in the Django Admin, have a red cross, instead of a green v, when displaying an error.</p>
<p><a href="http://docs.djangoproject.com/en/dev/ref/contrib/messages/#ref-contrib-messages" rel="nofollow">http://docs.djangoproject.com/en/dev/ref/contrib/messages/#ref-contrib-messages</a></p>
http://stackoverflow.com/questions/1856751/magento-product-images-new-option0Magento product images new optionbirkof2009-12-06T21:57:35Z2009-12-07T12:59:33Z
<p>Hey guys, how do i add one more option to product image list? like Exclude & Remove checkboxes</p>
http://stackoverflow.com/questions/1850768/how-to-give-my-c-app-administrative-rights-manifest-file0How to give my C# app administrative rights? manifest fileOppermann2009-12-05T01:32:46Z2009-12-05T01:42:05Z
<p>Hi.</p>
<p>I'm having some trouble with my C# app that uses win32_networkingadapterconfig. The problem is that I can't use the altering functions in win32_networkingadapterconfig when I use the app on a user that dont have admin rights. I have tried to "run as administrator", but no luck. And I have tried to make a manifestfile with this content in the trustInfo part:</p>
<pre><code> <trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet class="System.Security.PermissionSet" version="1" Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
</requestedPrivileges>
</security>
</code></pre>
<p></p>
<p>Enable clickone security settings are set to full trust. What am I doing wrong ?</p>
http://stackoverflow.com/questions/1836864/app-engine-authentication-error0App Engine Authentication ErrorSuzy2009-12-03T00:21:49Z2009-12-04T11:08:17Z
<p>I have an app hosted by google app engine, and I am having trouble with authentication. </p>
<p>When I login using my admin account and try to access the admin page or members pages, I just get a blank screen. I can login, and the members only menu shows when I login, but I just can't see any data from the members pages. </p>
<p>I'm not really sure where I should start checking? My app is registered with my google apps account and I am using the only admin login that is there. </p>
<p>Any suggestions would be appreciated. </p>
http://stackoverflow.com/questions/1528791/best-php-framework-with-admin-section1Best PHP framework with Admin Sectionunknown (google)2009-10-07T00:02:50Z2009-12-03T14:37:11Z
<p>I've being developing with Django for about two years. I recently was hired by a company that has about 20 sites that are all PHP. The PHP is very old and has really bad coding practices.</p>
<p>I would like to switch them over to Django but that might take awhile as the site have heavy e-commerce integrations. In the meantime I would like to switch them to a PHP framework that has a nice, quick admin area like Django.</p>
<p>I would like to have something setup by tomorrow and Symfony is pretty much out of the question. I don't really like how it works.</p>
<p>Are there any PHP frameworks that have easy to configure admin areas? Frameworks with sample projects would help.</p>
http://stackoverflow.com/questions/1828522/is-there-an-api-to-glassfish-admin-console0Is there an API to GlassFish Admin Console?Dominic Jodoin2009-12-01T20:03:27Z2009-12-01T21:15:30Z
<p>Hi, we just inherited the development of a web application that uses GlassFish. The setup instructions we got have all these manual steps to setup connection pool, JDBC resource and JMS. I'm wondering if there is an API that could allow us to do all this work automatically (e.g. with a script)?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1625906/reset-or-configure-sharepoint-central-administration0Reset or Configure Sharepoint Central AdministrationMo2009-10-26T16:52:20Z2009-11-27T13:49:44Z
<p>My Central Admin for sharepoint works but shows messages on the status bar 'page with errors' and when i open a setting e.g. Authentication providers and when i try click Save/OK button it does not work at all...page does not refresh or anything. This happens with most of the pages</p>
<p>I had made few changes to the .css files earlier but i don't see why this would have an impact on the Central Admin.</p>
<p>Any thoughts or suggestions please?</p>
<p>Thank you very much</p>
http://stackoverflow.com/questions/1804534/how-to-implement-custom-admin-actions-in-non-custom-models-in-django2How to implement custom admin actions in non-custom-models in Django?Jannis2009-11-26T16:07:26Z2009-11-26T16:34:33Z
<p>I'd like to build a custom admin action into a model <em>defined by Django</em>. Let's say I wanted to add the action "Activate selected User(s)" on <code>django.contrib.auth.models.User</code> in the Django admin interface. What would be the clean and proper way to accomplish this?</p>
<p>I had a look at the <a href="http://docs.djangoproject.com/en/dev/ref/contrib/admin/actions/#ref-contrib-admin-actions" rel="nofollow">documentation</a> but it's just about implementing admin actions in <em>custom</em> models if I looked correctly.</p>
http://stackoverflow.com/questions/853266/is-glassfish-admin-console-port-4848-secure0Is GlassFish Admin console (port 4848) secure?whippersnapper2009-05-12T15:08:04Z2009-11-24T13:57:48Z
<p>With understanding of secure Internet connections limited to SSL, I'm doubtful about the security of GlassFish Admin console. Normal secure HTTP connections use http**s**://domain/ URLs but in GlassFish <a href="http://domain:4848/" rel="nofollow">http://domain:4848/</a> is used to login to Admin console. Is there some kind of encryption going on between the browser and the server when using that administration port, or does all that communication go unsecurely, naked to possible hackers?</p>
<p>GlassFish documentation guide how to use the Admin console but I haven't found any mention about this security concern.</p>
http://stackoverflow.com/questions/1661899/restricting-an-entire-symfony-admin-generator-page-according-to-credentials0Restricting an entire symfony admin generator page according to credentialsdland2009-11-02T15:20:28Z2009-11-19T00:13:41Z
<p>I have a website with a large number of admin generators to take care of an assortment of tables. Within the realm of authenticated users, I want to be able to deny access, not just to individual actions or fields, but an entire admin module.</p>
<p>There doesn't appear to be a global credentials parameter for <code>generator.yml</code>, and putting stuff in <code>security.yml</code> at the module level doesn't appear to have any effect.</p>
<p>I've browsed the generated code and looked at <code>cache/front/dev/modules/autoFoo/actions/actions.class.php</code>, and at preExecute() in particular, but I don't know what to do.</p>
<p>I suppose I have to overwrite preExecute() in my own actions.class.php file, but I'm a bit unsure about what needs to be one, e.g., when to call parent::preExecute() (if in fact I need to or not).</p>
http://stackoverflow.com/questions/1756340/how-can-i-add-the-user-author-email-to-the-row-of-the-edit-posts-panel0How can I add the user/author email to the row of the "edit posts" panel ?randy2009-11-18T14:23:43Z2009-11-18T14:23:43Z
<p>I want to have the user/author email available in the "edit posts" panel. Currrently the "edit posts" panel has the author name but no email and the "user" panel has author and email but doesn't have the brief post description.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1721235/symfony-admin-formfilter-is-empty-i18n0Symfony - admin - FormFilter - is empty - i18nMailo2009-11-12T10:13:59Z2009-11-13T12:47:21Z
<p>Hi,
we are in admin generator in filters in field. What is the most clearest way to translate is empty label under form fields?</p>
<p>I've solve it by own setWidgets and setWidgets in BaseFormFilterDoctrine witch extend the parent methods by translating that is empty( empty_label ). </p>
<ul>
<li>setWidgets - translate all *empty_label*s in form filter( for base filter class )</li>
<li>setWidget - translate *empty_label* for one filter field( for the extending filter class )</li>
</ul>
<p>It works, but i think it's nasty. I am looking for something more clean</p>
http://stackoverflow.com/questions/1728953/django-save-a-resize-copy-of-image-on-upload-using-admin-site0django - save a resize copy of image on upload (using admin site)sa1252009-11-13T12:32:08Z2009-11-13T12:34:54Z
<p>Hi - </p>
<p>I'm building a site for a client that needs to support image uploads (an artist) through the admin interface. Since most of the images are pretty high-res, I wanted to create thumb copies of the image to display on the gallery page after the upload. The upload works great with the forms.ImageFile element, but I was looking for some ideas on how to do the actual resizing and and linking between the thumb and the true size images. I had an idea to hold model class for both an image and an image thumb:</p>
<pre><code>from django.db import models
class Image(models.Model):
"""a true size image"""
image = models.ImageFile(upload_to="images")
desc = models.CharField(max_length=256)
class Meta:
db_table = "images"
class ImageThumb(models.Model):
""""a thumbnail of an actual image"""
real_image = models.ForeignKey('Image')
image = models.ImageField(upload_to="images/thumbs")
class Meta:
db_table = "thumbs"
</code></pre>
<p>That part I'm stuck on is how to resize the real image after upload (pil? how?), and I could probably use some polishing on my models - any help will be great. Thanks.</p>
http://stackoverflow.com/questions/1690351/how-to-undo-another-users-checkout-in-tfs-via-the-gui1How to undo another user's checkout in TFS via the GUI?brett rogers2009-11-06T20:52:33Z2009-11-12T05:55:58Z
<p>As the resident TFS admin, on occasion I am asked to undo a checkout (usually a lock) that a user has on a certain file. This can be done via the command line using the TF.exe utility's Undo command (see <a href="http://msdn.microsoft.com/en-us/library/c72skhw4.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/c72skhw4.aspx</a>), but that's kind of a pain. </p>
<p>Is there a way to undo another user's checkout via the GUI?</p>
http://stackoverflow.com/questions/1690520/how-to-undo-another-users-checkout-in-tfs0How to undo another user’s checkout in TFS?brett rogers2009-11-06T21:18:27Z2009-11-11T20:10:50Z
<p>As the resident TFS admin, on occasion I am asked to undo a checkout (usually a lock) that a user has on a certain file checked into source control. </p>
<p>How do you undo another user's checkout?</p>
http://stackoverflow.com/questions/1685386/django-admin-how-to-dynamically-insert-values-into-the-add-inline-form0Django Admin: How to dynamically insert values into the add inline formorwellian2009-11-06T04:21:37Z2009-11-10T03:35:28Z
<p>Let's say I have this model:</p>
<pre><code>class Foo(models.Model):
bar = models.ForeignKey(Bar)
currency = models.ForeignKey(Currency) # currency is just an example
is_active = models.BooleanField()
</code></pre>
<p>Now suppose Foo is an Inline of Bar. And I would always want to indicate a value on each currency? If I could replace those currency drop down menus with a widget that just returns the name as text with a hidden field.
So for example, on an add page, instead of having the inline show this:</p>
<pre><code> - currency drop down menu is_active checkbox
- currency drop down menu is_active checkbox
- currency drop down menu is_active checkbox
</code></pre>
<p>have it show this:</p>
<pre><code> - currency name 1 is_active checkbox
- currency name 2 is_active checkbox
- currency name 3 is_active checkbox
- currency name 4 is_active checkbox
- currency name 5 is_active checkbox
</code></pre>
<p>What would be the right approach to accomplish that? I assume I would have to override some form class method. Thanks.</p>
http://stackoverflow.com/questions/1097796/how-to-check-whether-a-user-is-in-administrator-group-in-install-shield-2009-basi1How to check whether a user is in Administrator group in Install Shield 2009 Basic MSI ProjectSamir2009-07-08T12:36:39Z2009-11-09T18:56:08Z
<p>Install Shield 2009, Premier, Basic MSI Projcet:[I want to allow only administrator users to run setup]
In the
Releases->MyProductConfiguration->MyRelease->Setup.exe tab i chose "Required Execution Level" = "Invoker" and in
General Information->Product Properties I put a Install condition as Condition = "AdminUser" Message = "Require Admin user to run this..."</p>
<p>The problem is only the main Administrator can install it. Any other user say "Test" with Administrative privilege can't install and get the error message "Require Admin user to run this..." </p>
<p>So how to allow only those user who are in Admin group to install and restrict others.</p>
http://stackoverflow.com/questions/1692679/windows-service-setup-project-run-service-as-administrator1Windows Service setup project - run service as administratordb12342009-11-07T10:48:03Z2009-11-07T11:16:48Z
<p>Hi,</p>
<p>I've got a setup project for a Windows Service (.net 3.5, visual studio 2008).</p>
<p>The Windows Service needs to be run under the Administrator account, does anyone know how I can get the Setup Project to set the "user to log on as" setting for the windows service as part of the setup process?</p>
<p>At the moment I have to manually right click on the service and set it to log on as the administrator everytime I update the service.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/329963/replace-textarea-with-rich-text-editor-in-django-admin6Replace textarea with rich text editor in Django Admin?unknown (google)2008-12-01T03:32:46Z2009-11-06T16:27:20Z
<p>I would like to know the best way to replace a standard textarea field with a rich text editor in Django Admin?</p>
http://stackoverflow.com/questions/1675229/how-to-make-admin-site-safe2How to make admin site safe ?Kovu2009-11-04T17:04:19Z2009-11-04T17:23:20Z
<p>Hi guys,</p>
<p>very simple question:
I have admin site in my web project. So, how can I make it safe?</p>
<p>What I have until now:</p>
<ul>
<li>Database handled user with userID and userlevel</li>
<li>on the pageload of the admin master page (which includes all admin sites) there is a clause to check if userID is okay (get the user from database) and if userlevel is right</li>
<li>If Not, redirect to Default.aspx with normal master page</li>
<li>if yes, go trought</li>
</ul>
<p>How safe is it really?</p>
<p><hr></p>
<p>Edit:</p>
<ul>
<li>The userID is saved in a session on the server.</li>
<li>There is no way to save the login (no cookies).</li>
<li>The user must login to get the userID in the session</li>
<li>The login is saved in a database table user_log with username, password, ip, loginsucceeded and userID</li>
</ul>
http://stackoverflow.com/questions/1527069/how-to-structure-groups-within-a-website-admin-admin-powers-user-identity1How to structure groups within a website? (admin, admin powers, user identity)Doug2009-10-06T17:49:02Z2009-11-03T11:46:30Z
<p>I am going to be making a small user system but I have questions.</p>
<ol>
<li><p>If I were to make a registration table (mysql), what is wrong with just storing the password and username into the database without encryption?</p></li>
<li><p>I am trying to think of how to build the admin portion. Should I just check a column in the database to see if user is admin or not? If true, then admin page will be revealed. </p></li>
<li><p>For admin powers, let's say I have 3 powers: delete user, approve user, and move user. In a few scenarios, I may want to give some people only the ability to approve, or delete, or all, or any combination. How would I make this? I was thinking of having a column for each power and have the script check each column. Let's assume I have over 20 powers that will be added.</p></li>
<li><p>If I have a website where people can create groups and become admins of their groups and the these admins can give different combination of admin powers to people in their group (For ex, Zack creates and group called Mountain and grants one member the ability approve new group members and grants a second member the ability to delete members and assigns a third member the ability to delete and approve. How will I structure this in MySQL? Should I use a columns that say what group are they admin of and what ability do they have? E.g. columns: Delete, Approve, GroupMemberOf, GroupAdminOf and use checks.</p></li>
</ol>
<p>I have an idea but I want to learn the more sophisticated ways.</p>
<p><strong>Thanks for the answers so far, however, I am really looking for ideas on a structure ( Question 2 - 4 ).</strong> Please let me know if I can help clear up the question.</p>
http://stackoverflow.com/questions/1666288/how-to-find-the-cause-for-growing-server-load1How to find the cause for growing server load [closed]Andreas Gohr2009-11-03T09:43:57Z2009-11-03T11:41:39Z
<p>I'm having load problems with my server and even though I'm a somewhat experienced Linux admin I'm out of ideas now.</p>
<p>The problem is a slowly but steadily increasing load on the server without any apparent cause.</p>
<p>The Server is a AMD Athlon(tm) 64 X2 Dual Core Processor 6000+ with 6GB RAM. It is running Debian Stable with Linux gir 2.6.26-2-amd64 #1 SMP Wed Aug 19 22:33:18 UTC 2009 x86_64 GNU/Linux.</p>
<p>The server basically runs Lighttpd, several FastCGI PHP processes and a MySQL database. Typical webserver tasks.</p>
<p>The CPU is never really fully used up and memory is mainly used for buffers and cache which is fine. I tried to restart the various services to see if one of them would decrease the load again, but without luck.</p>
<p>Here are graphics showing load, CPU and IOStat:</p>
<p><img src="http://img688.imageshack.us/img688/647/localhostlocaldomaincpu.png" alt="CPU" />
<img src="http://img9.imageshack.us/img9/5011/localhostlocaldomainloa.png" alt="Load" />
<img src="http://img40.imageshack.us/img40/6691/localhostlocaldomainios.png" alt="Monthly IO" />
<img src="http://img35.imageshack.us/img35/6691/localhostlocaldomainios.png" alt="Daily IO" /></p>
<p>So, question is: What could cause a slowly but ever increasing load? And how do I find out what's responsible?</p>
http://stackoverflow.com/questions/1658003/long-script-in-admin-task-in-symfony0Long script in admin, task in Symfony?fesja2009-11-01T19:03:27Z2009-11-01T20:19:09Z
<p>In the admin panel, when the admin selects an action it will load data from an API and save it to the DB. It could take from 2 seconds to 3 minutes, depending on what he is importing.</p>
<p>How can I do in Symfony to create like a thread, so the admin is not waiting to finish. And when it's finished tell him to check the result?</p>
<p>Are the tasks the answer for this problem?</p>
<p>thanks!</p>
http://stackoverflow.com/questions/1081596/django-serving-admin-media-files2Django: serving ADMIN media filesAdrian Liem2009-07-04T05:43:16Z2009-11-01T10:28:37Z
<p>Hi all,</p>
<p>I've been successfully serving media files for the normal MEDIA files, but when I tried serving admin media files, I failed. please kindly help me locating the problem, as I've tried to troubleshoot the problem for several hours already with no luck (been googling too and read the django doc about serving static files as well).</p>
<p>The error as I tried to access localhost:8000/media/a.gif is as following:</p>
<blockquote>
<p>Page not found:
f:\python25\lib\site-packages\django/contrib/admin/media\a.gif</p>
</blockquote>
<p>I put the admin media files in directory named "media", while I put the normal media files in directory named "static". I'm on Windows, too.</p>
<p>Here's how I serve the ordinary media files in urls.py:</p>
<pre><code># serve static files
from django.conf import settings
if settings.ENVIRONMENT==settings.ENV_DEVELOPMENT:
urlpatterns += patterns("django.views",
url(r"%s(?P<path>.*)$" % settings.MEDIA_URL[1:], "static.serve", {"document_root": settings.MEDIA_ROOT,})
)
</code></pre>
<p>And my settings.py (only the important pieces):</p>
<pre><code>import project_path
MEDIA_ROOT = project_path.MEDIA.replace('\\','/')
MEDIA_URL = '/static/'
ADMIN_MEDIA_PREFIX = '/media/'
TEMPLATE_DIRS = (
project_path.TEMPLATE.replace('\\','/'),
)
</code></pre>
<p>And my project_path.py:</p>
<pre><code>import sys
from os.path import dirname, join
ROOT = dirname(__file__)
APP = join(ROOT, "apps")
TEMPLATE = join(ROOT, "templates")
MEDIA = join(ROOT, "static")
ADMIN_MEDIA = join(ROOT, "media")
</code></pre>
<p>Any hints?</p>
<p>or maybe at least please share how do you serve your admin media files (without changing any files from the web server, but only via the django source code)</p>
<p>Thanks in advance :)</p>
http://stackoverflow.com/questions/1637899/admin-rights-with-smart-install-maker0admin rights with smart install makerMax2009-10-28T15:09:24Z2009-10-28T15:09:24Z
<p>Hey there,</p>
<p>yesterday I purchased Smart Install Maker. Everything seems to be working fine, except the admin rights.
Even when I uncheck the field "require Administrator rights" my final install package can't be installed by a normal user who hasn't got admin rights.
The installation will start, but during the copying process it promps "unable to copy file xyz.dll". This message appears for every file in the package.
I guess that the install program is unable to copy the files due to restricted rights. On an admin account it worked fine.</p>
<p>We tested on Win XP.</p>
<p>any one who can help me?</p>
<p>thx, Max</p>
http://stackoverflow.com/questions/1605112/truly-understanding-networking1Truly understanding Networking?Recursion2009-10-22T05:07:25Z2009-10-22T05:25:42Z
<p>I understand the basics of networking such as Lan and stuff. I know what many of the protocols are and how to build a client/server socket program in C. But what I really want is a very good understanding of how networks actually work. Not only from a programming aspect but also from a application aspect. I am looking for some material(preferably a book) which will give me a very good foundation to go off of. I am in the middle of wanting to be a programmer or a UNIX admin, so I really should learn and know how to apply networking fundamentals.</p>
<p>Does any such a concise resource exist? Would it be better going the more academic route by buying a networking book(such as those from Tanenbaum or Kurose), or is it better to go the It route possibly looking into network admin text or certification books. </p>
<p>Thank you all so much. </p>
http://stackoverflow.com/questions/1594436/making-django-admin-display-the-primary-key-rather-than-each-objects-object-type0Making Django admin display the Primary Key rather than each object's Object type.nailer2009-10-20T12:58:26Z2009-10-20T13:03:07Z
<p>Hi all,</p>
<p>In Django 1.1 admin, when I go to add or change an object, my objects are displayed as:</p>
<pre><code>Select host to change
* Add host
Host object
Host object
Host object
Host object
Host object
</code></pre>
<p>This happens for all models in my site, not just Hosts.</p>
<p>Rather than display the same name for each object, I would like Django to display the primary key. </p>
<pre><code>Select host to change
* Add host
machine1
machine2
</code></pre>
<p>Here is my code:</p>
<pre><code>from django.db import models
# Create your models here.
class Host(models.Model):
host = models.CharField(max_length=100,primary_key=True)
class Admin:
list_display = ('host')
class Test(models.Model):
testname = models.CharField(max_length=100,primary_key=True)
class Admin:
list_display = ('testname')
class Result(models.Model):
host = models.ForeignKey(Host)
TESTRESULT_CHOICES = (
('P', 'Pass'),
('F', 'Fail'),
)
testresult = models.CharField(max_length=1, choices=TESTRESULT_CHOICES)
reason = models.CharField(max_length=100)
time = models.DateTimeField()
testname = models.OneToOneField(Test, primary_key=True)
class Admin:
list_display = ('host','testname','time','testresult','reason')
</code></pre>
<p>Reading <a href="http://docs.djangoproject.com/en/dev/ref/contrib/admin/" rel="nofollow">http://docs.djangoproject.com/en/dev/ref/contrib/admin/</a>:</p>
<p>"ModelAdmin.list_display</p>
<p>Set list_display to control which fields are displayed on the change list page of the admin."</p>
<p>However this simply does not seem to work. Am I doing something wrong?</p>
http://stackoverflow.com/questions/1575536/django-admin-getting-request-in-modelforms-constructor0Django Admin: Getting request in ModelForm's constructororwellian2009-10-15T22:45:47Z2009-10-16T11:24:52Z
<p>The below code removes certain values from a drop down menu.
It works fine but I want to remove the value if the user lacks certain permissions.
How can I access request.user in the ModelForm's constructor? Or is there a better way to accomplish what I am trying to do?</p>
<pre><code>class AnnouncementModelForm(forms.ModelForm):
def __init__(self, *args, **kwargs):
super(AnnouncementModelForm, self).__init__(*args, **kwargs)
self.fields["category"].queryset = AnnouncementCategory.objects.filter(can_post=True)
</code></pre>