On Sun, Nov 3, 2013, [email protected] <[email protected]> wrote: >I need a web application to do the following: > >1. Authenticate a user (approx. 500 users) then show the user a list of >registered devices within the servers dhcpd.conf file. > >2. Offer the user the option to delete an existing device. > >3. Offer the user the option to add a device > - under this option I would like to set parameters of the dhcpd.conf >file in the background to "USER-device-HOSTGROUP" or something of that >nature. > - A place for users to enter their MAC addresses > >4. and finally submit their request. Upon submit, the request would be >aggregated as per the parameters, appended to the dhcpd.conf file, and the >isc-dhcpd-server would be reset "applying" the changes > requested. > >Is Django the place for me, using python?
Yes, there's no reason you couldn't use Django to write such a web application, especially if you already have some familiarity with Python. I suggest starting with the Django tutorial: <https://docs.djangoproject.com/en/1.5/intro/tutorial01/> which will quickly give you an idea of how several parts of your project might be tackled using Django. You'll get answers to your questions on the django-users email list, <[email protected]> - the web interface is <https://groups.google.com/forum/#!forum/django-users>. The list you've posted to is django-developers, an email list is for the discussion of the development of Django itself. You might also find helpful the #django IRC channel on irc.freenode.net. I hope that helps, Daniele -- You received this message because you are subscribed to the Google Groups "Django developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-developers. To view this discussion on the web visit https://groups.google.com/d/msgid/django-developers/20131103174359.2095291105%40smtp.modern-world.net. For more options, visit https://groups.google.com/groups/opt_out.
