Re: Theme for django admin interface.

2019-05-28 Thread Mayank Priy
I will send you templates link for admin panel On Tue 28 May, 2019, 1:29 PM Akshay Jain, wrote: > Hello, > > Is anyone aware of any django admin theme for creating a dashboard(similar > to django-suit). I've been working with django-suit or quite a while now, > but as it's way too outdated and p

Theme for django admin interface.

2019-05-28 Thread Akshay Jain
Hello, Is anyone aware of any django admin theme for creating a dashboard(similar to django-suit). I've been working with django-suit or quite a while now, but as it's way too outdated and python2.7 is also retiring, I want to use the latest version of django and python. But as per the requirement

Re: django admin interface

2016-11-18 Thread Derek
Not a direct answer, but its much easier to use the in-built options to extend admin actions: https://docs.djangoproject.com/en/1.10/ref/contrib/admin/actions/ Otherwise you will probably need to extend/override the admin template to add the code&link for your button; e.g. see: http://stackoverf

django admin interface

2016-11-16 Thread Sandeep Jalagam
how can i add custom action button beside add button? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to th

Re: Django JET - new fresh looking Django Admin interface with improved functionality

2015-10-26 Thread Ezequiel Bertti
Is pretty and modern. Is not working well in smartphone. But I still prefer django-suit because have more functionality and tools to make a great admin. Mainly for the possibility of adding includes html and row colors. Take a look: http://djangosuit.com/ On Sat, Oct 24, 2015 at 9:01 AM, Денис

Django JET - new fresh looking Django Admin interface with improved functionality

2015-10-24 Thread Денис Кильдишев
What do you think of it? http://jet.geex-arts.com/ https://github.com/geex-arts/django-jet -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr.

Re: design decision tree survey using django admin interface

2015-07-17 Thread ananya choudhury
Can this be done using Django-dynamic-forms? On Fri, Jul 17, 2015 at 5:22 AM, Derek wrote: > I doubt this is possible with plain admin, which is designed for CRUD > operations > > Trying looking into form wizards: > https://docs.djangoproject.com/en/1.7/ref/contrib/formtools/form-wizard/ > > or,

Re: design decision tree survey using django admin interface

2015-07-17 Thread Derek
I doubt this is possible with plain admin, which is designed for CRUD operations Trying looking into form wizards: https://docs.djangoproject.com/en/1.7/ref/contrib/formtools/form-wizard/ or, if that cannot handle your logic, then write an action: https://docs.djangoproject.com/en/1.7/ref/contri

Re: design decision tree survey using django admin interface

2015-07-16 Thread dc
Thanks. I'll look into it. On Wednesday, July 15, 2015 at 12:18:05 AM UTC-4, luisza14 wrote: > > I know it is not the answer of your question but for your survey design it > is important that you see this links. > > https://github.com/chrisglass/django_polymorphic > https://github.com/django-mptt

Re: design decision tree survey using django admin interface

2015-07-14 Thread Luis Zárate
I know it is not the answer of your question but for your survey design it is important that you see this links. https://github.com/chrisglass/django_polymorphic https://github.com/django-mptt/django-mptt/ I know that because I did a survey app years ago, but unfortunately it is not free and it i

design decision tree survey using django admin interface

2015-07-14 Thread anc
I need to build a survey tool which provides an interface to the survey administrator to add/edit/delete questions. I understand we can do it through the admin interface. But can we modify the admin interface to provide branched/skip logic feature so that the administrator can design a survey w

Re: django admin interface - how to enable adding new entries to foreign key-linked dropdown menu?

2014-10-09 Thread Russell Keith-Magee
o have to drop out and go to the Exercise table > view to add a new exercise to the list. Thanks in advance! > > Elli > > > *Note: This was cross-posted to StackOverflow > <http://stackoverflow.com/questions/26227062/insert-to-foreign-key-linked-table-in-django-admin-interf

django admin interface - how to enable adding new entries to foreign key-linked dropdown menu?

2014-10-07 Thread Eliezer Kanal
ew exercise to the list. Thanks in advance! Elli *Note: This was cross-posted to StackOverflow <http://stackoverflow.com/questions/26227062/insert-to-foreign-key-linked-table-in-django-admin-interface>, with very few views there. I thought I'd try here as well.* -- You received

Re: Running a script through Django admin interface button/url

2013-06-11 Thread Derek
... On Tuesday, 11 June 2013 13:13:45 UTC+2, Giorgos Kontogiorgakis wrote: > > Hello everyone! > > I am kinda new to python and Django as well so many things still confuse > me!I have my Django admin interface with a database on it! > The thing i want to do now is the following: &

Running a script through Django admin interface button/url

2013-06-11 Thread Giorgos Kontogiorgakis
Hello everyone! I am kinda new to python and Django as well so many things still confuse me!I have my Django admin interface with a database on it! The thing i want to do now is the following: I want to be able to run a script from my Djano admin interface either by pushing a "Start"

Re: Oracle database TextField limitations and Django admin interface queries

2013-04-19 Thread Lauri Savolainen
he database is created by Django's syncdb and >>> is not a legacy one. >>> >>> This is the raw SQL query the Django admin interface produces: >>> >>> SELECT DISTINCT "app_route"."id", >>>

Re: Oracle database TextField limitations and Django admin interface queries

2013-04-13 Thread Ian
(_('additional route >> information'), blank=True) >> >> Data length for the corresponding column in the database seems to be 4000 >> and the type is NCLOB. The database is created by Django's syncdb and is >> not a legacy one. >> >> This is

Re: Oracle database TextField limitations and Django admin interface queries

2013-04-13 Thread Ian
rresponding column in the database seems to be 4000 > and the type is NCLOB. The database is created by Django's syncdb and is > not a legacy one. > > This is the raw SQL query the Django admin interface produces: > > SELECT DISTINCT "app_route"."id&qu

Re: Oracle database TextField limitations and Django admin interface queries

2013-04-12 Thread Lauri Savolainen
y Django's syncdb and is not a legacy one. This is the raw SQL query the Django admin interface produces: SELECT DISTINCT "app_route"."id", "app_route"."route_no", "app_route"."owner_no",

Re: Oracle database TextField limitations and Django admin interface queries

2013-04-10 Thread Jani Tiainen
) customized Django admin interface. In the admin interface list view it's possible to search routes using a custom search box which just injects parameters like ?route_no=1234 and so forth into the url resulting in a filtered list view. For the most part this works but when I want to searc

Oracle database TextField limitations and Django admin interface queries

2013-04-10 Thread Lauri Savolainen
A little background: my application is used to manage observational data which is collected from designated routes annually. Each route object has a set of observation events which in turn have a date field. The data is managed by using a (terrible) customized Django admin interface. In the

Re: Survey : Theme for Django admin interface

2013-03-11 Thread Derek
On Monday, 11 March 2013 06:05:46 UTC+2, Venkatraman.S. wrote: > > > On Mon, Mar 11, 2013 at 3:49 AM, Emiliano Dalla Verde Marcozzi < > ed...@fedoraproject.org > wrote: > >> >> I was looking for this, but didnt find anything. i think it can have a >> great market, something like >> this web: >>

Re: Survey : Theme for Django admin interface

2013-03-10 Thread Venkatraman S
On Mon, Mar 11, 2013 at 3:49 AM, Emiliano Dalla Verde Marcozzi < e...@fedoraproject.org> wrote: > > I was looking for this, but didnt find anything. i think it can have a > great market, something like > this web: > https://wrapbootstrap.com/theme/unicorn-admin-template-WB0F35928 > For me, a reaso

Re: Survey : Theme for Django admin interface

2013-03-10 Thread Emiliano Dalla Verde Marcozzi
2013/3/10 Venkatraman S > Hi, > > Was wondering if there are *paid* takers for themes for the django-admin > interface. I know there are a few that exist already but am not quite happy > with them. > > I can definitely spend a few days/weeks and develop some nice looking

Survey : Theme for Django admin interface

2013-03-09 Thread Venkatraman S
Hi, Was wondering if there are *paid* takers for themes for the django-admin interface. I know there are a few that exist already but am not quite happy with them. I can definitely spend a few days/weeks and develop some nice looking ones, but wanted to check if people are really looking for

Re: How to customize Django Admin interface with custom urls and views?

2013-03-07 Thread John James
Thanks a lot buddy!! I think I dig deeper by links you have posted and figure out my misunderstandings. Seem I should define my views in application/views.py file and then define the urls rules! That's great news =)) -- You received this message because you are subscribed to the Google Groups

Re: How to customize Django Admin interface with custom urls and views?

2013-03-06 Thread Tomas Ehrlich
Hello John, welcome in Django, hope you'll find it useful as I did. Extend Django admin is a little bit tricky, but not impossible. You can add your own views to admin simply by extending your ModelAdmin subclass. See https://docs.djangoproject.com/en/1.5/ref/contrib/admin/#django.contrib.admin.M

How to customize Django Admin interface with custom urls and views?

2013-03-06 Thread John James
Hi to all! I'm completely new in Django. All I done is read one Introduction Book by Adrian Holovaty. When I finished I thought I knew enough to build even something simple, because the book is real good and clear. Maybe I could create something simple, but I wanna create my own Administratio

Re: Customizing the Django Admin Interface

2012-09-17 Thread Derek
The text I am referring to is the one that appears as a title on all the change list pages; I cannot, however, find it in the change_list template. But if you have not needed to change that, then you would not be able to help. (PS I was not asking to see the result of your changes, but where

Re: Customizing the Django Admin Interface

2012-09-17 Thread hevok
Well, yes. The magic pony is doing everything for you, if you just treat it correctly! Basically, put the modified admin templates and static files exactly there were you are serving your own templates and static assets normally in you project directory. For instance, treat the admin as an app

Re: Customizing the Django Admin Interface

2012-09-17 Thread JJ Zolper
Derek, You can see the custom changes I made here: http://www.madtrak.com/admin That is the extent of what I have done in relation to the default. Nothing more then some colors in the CSS and text color. Additionally I changed the actual wording for the to Log in | MadTrak Django Admin oth

Re: Customizing the Django Admin Interface

2012-09-17 Thread JJ Zolper
Pretty sure you're in the wrong thread bud. On Sunday, September 16, 2012 2:52:34 AM UTC-4, Gutso wrote: > > Hi Everyone, > > I have one query: > > Should we change the database(mySQL) table's engine through migration > scripts or not? If not then why? > > Following were my proposal: > > def for

Re: Customizing the Django Admin Interface

2012-09-17 Thread JJ Zolper
Hevok so what are the steps for doing this? Sure I know where the admin files are located but once I have copied them does magic just happen and Django uses my new configurations? Thanks, JJ PS. apparently after I left my website alone for a little the CSS propagated through and now I see thi

Re: Customizing the Django Admin Interface

2012-09-17 Thread Derek
Hi JJ I'd like to know how you changed the wording... I cannot seem to find the source text, for example, for "Select ... to change" and would appreciate seeing/knowing how you did it. There are examples on various blogs, but Django has changed how it is works since they were written. Thanks D

Re: Customizing the Django Admin Interface

2012-09-16 Thread hevok
Its the correct way to copy the templates and static files into your project folder, if you want to customize them. Otherwise the changes would disappear as soon as you deploy or setup-up your project on a different computer/virtual environment. Try F5, CTRL-F5 or CTRL-R to reload CSS in the brows

Re: Customizing the Django Admin Interface

2012-09-16 Thread Gurpreet Bhatia
Hi Everyone, I have one query: Should we change the database(mySQL) table's engine through migration scripts or not? If not then why? Following were my proposal: def forwards(self, orm): # Change engine from MYISAM to INNODB db.execute('alter table abc ENGINE=INNODB;') def

Customizing the Django Admin Interface

2012-09-15 Thread JJ Zolper
Hello, I was able to locate the Django files for the admin under contrib in the source. I was curious if I could get some tips about customizing the interface. One website I read said I shouldn't change any of the Django source but if I want to set up a slightly different login page for exampl

Re: Checkboxes for a list of items like in Django admin interface

2012-01-04 Thread DrBloodmoney
On Wed, Jan 4, 2012 at 5:33 AM, Martin Tiršel wrote: > Hello, > > I have a list of items (from a model) I want to display with checkboxes (for > deleting multiple objects at once). The same behaviour like in django admin > (change list). I can do such thing in templates: > > {% for item in item_li

Re: Checkboxes for a list of items like in Django admin interface

2012-01-04 Thread Thorsten Sanders
I missunderstood due "and in a view loop through somename list" thought you mean you delete them 1 by 1 :P And the orm itself tries to convert the value to an int and throws an ValueError if it fails, so find it a bit double to check myself and let the orm do it again. On 04.01.2012 13:43, M

Re: Checkboxes for a list of items like in Django admin interface

2012-01-04 Thread Martin Tiršel
Yes, this is the technique I described but I was asking if there is a Django way to do this. You can't forgot to sanitize the input in this case: id_list = request.GET.getlist('id_notification_list') id_list = [int(i) for i in id_list if i.isdigit()] notifications = Notification.objects.filter

Re: Checkboxes for a list of items like in Django admin interface

2012-01-04 Thread Thorsten Sanders
I do it this way: and in the view: todel = request.POST.getlist('todelete') ItemWatchList.objects.filter(user=request.user,id__in=todel).delete() On 04.01.2012 11:33, Martin Tiršel wrote: Hello, I have a list of items (from a model) I want to display with checkboxes (for deleting multiple

Re: Checkboxes for a list of items like in Django admin interface

2012-01-04 Thread kenneth gonsalves
On Wed, 2012-01-04 at 11:33 +0100, Martin Tiršel wrote: > and in a view loop through somename list I get from POST and delete > items. > Is there a better Django way I should do it or this approach I wrote > is > correct? I have been doing the same - would love to know if there was a better w

Checkboxes for a list of items like in Django admin interface

2012-01-04 Thread Martin Tiršel
Hello, I have a list of items (from a model) I want to display with checkboxes (for deleting multiple objects at once). The same behaviour like in django admin (change list). I can do such thing in templates: {% for item in item_list %} {{ item }} {% endfor %} and in a view loop through

Re: synchronize django admin interface password with other application passwords

2011-11-06 Thread Phang Mulianto
maybe you can just modify the create_user function in django , matching the hash algorithm of the other backend, or the other backend matching to the django backend. you choose which one would be the single auth method. and of course the admin interface is just as it, except you need custom metho

Re: synchronize django admin interface password with other application passwords

2011-11-06 Thread Gelonida N
Hi Mike, On 11/07/2011 12:15 AM, Mike Dewhirst wrote: > On 7/11/2011 7:43am, Gelonida N wrote: >> >> What would be the easiest way to hook into the password modification >> form, such, that I can calculate two password hashes with different >> salts / alorithms? >> > You need your own auth backend

Re: synchronize django admin interface password with other application passwords

2011-11-06 Thread Mike Dewhirst
On 7/11/2011 7:43am, Gelonida N wrote: Hi, I would like to use the django admin interface for authentification of a web site. However I also have to store a password hash (different algorith / different salt) for another application, such, that both applications can use the same password. What

synchronize django admin interface password with other application passwords

2011-11-06 Thread Gelonida N
Hi, I would like to use the django admin interface for authentification of a web site. However I also have to store a password hash (different algorith / different salt) for another application, such, that both applications can use the same password. What would be the easiest way to hook into

Copying the Django Admin Interface

2010-08-16 Thread Eric
Hello, I am new to Django, and I am trying to develop an application for researchers to submit data to a database. I believe that the default admin interface from django.contrib.admin should be just about perfect for the job. I either want to subclass AdminSite and make my own administration page

Re: Is it possible to change the width of the boxes displayed by the filter_horizontal in Django admin interface?

2010-03-31 Thread rc
Walt, Thanks for the clarification. That helped a lot. I did get this working. Yeah! Had to do a slight tweak to the surrounding elements on the page to get it to look right (minor change to widgets.css). Now I can see all of the data for the profiles. Seems like there should be a way to auto scal

Re: Is it possible to change the width of the boxes displayed by the filter_horizontal in Django admin interface?

2010-03-26 Thread Walt
I'm sorry I wasn't more clear, the class Media just gets added to your existing admin class. The path to the css should be the path that is appended to your SETTINGS.PY media path to reach the css file. The class ResizeFilterAdmin was just an example name. In other words, if your media path is: /v

Re: Is it possible to change the width of the boxes displayed by the filter_horizontal in Django admin interface?

2010-03-25 Thread rc
Walt, Thanks for the response. This is making me crazy. Seems like this should be an easy thing to do. I have tried your suggestion, but I am not totally clear on where in the admin.py It is just not loading up the new media class. Am I supposed to add the resize class as a separate class like t

Re: Is it possible to change the width of the boxes displayed by the filter_horizontal in Django admin interface?

2010-03-23 Thread Walt
You'll need add a stylesheet Media class to your admin class: class ResizeFilterAdmin(admin.ModelAdmin): # class Media: css = { 'all': ('/relative/path/to/supplemental.css'), } Then, in that CSS file you'll need to specify the width of your element: /* by class */ .filtere

Is it possible to change the width of the boxes displayed by the filter_horizontal in Django admin interface?

2010-03-22 Thread rc
I am using the filter_horizontal in my Django admin interface and it works great. Only problem is that some of the data that is contained in the manytomany relationship is longer than the filter_horizontal forms in the admin interface. How do I change the _width_ of the forms displayed. >F

Re: django admin interface

2010-02-17 Thread Andy Cottell
I have found the source of the problem. When running the built in dev server, I used the command "python manage.py testserver". This command seems to create a new database, with no user records, and run the server using that. This means that loging in is impossible as there are no users to log in a

Re: django admin interface

2010-02-08 Thread Russell Keith-Magee
On Mon, Feb 8, 2010 at 10:42 PM, Andy Cottell wrote: >> > > I am new to django, and have started building a project in it. I have >> > > tried to use theadmininterface with the project am having issues >> > > logging in. I have setup the interface as instruced in the django >> > > tutorial part 2,

Re: django admin interface

2010-02-08 Thread Andy Cottell
Bump! On Feb 2, 1:48 am, Andy Cottell wrote: > I have done this, and created an superuser when prompted. However the > login still fails with the same error. > > Here is the urls.py: > > from django.conf.urls.defaults import * > > # Uncomment the next two lines to enable theadmin: > from django.c

Re: django admin interface

2010-02-01 Thread Andy Cottell
I have done this, and created an superuser when prompted. However the login still fails with the same error. Here is the urls.py: from django.conf.urls.defaults import * # Uncomment the next two lines to enable the admin: from django.contrib import admin admin.autodiscover() urlpatterns = patte

Re: django admin interface

2010-02-01 Thread bedros
make sure you do syncdb to create database tables before you can actually use the admin interface for the first time. try python ./manage.py syncdb On Feb 1, 4:41 pm, Andy Cottell wrote: > I am new to django, and have started building a project in it. I have > tried to use the admin interface

django admin interface

2010-02-01 Thread Andy Cottell
I am new to django, and have started building a project in it. I have tried to use the admin interface with the project am having issues logging in. I have setup the interface as instruced in the django tutorial part 2, and created a new superuser and cannot use it to log in. The user is always rej

Re: Django Admin interface and filter by value

2010-01-24 Thread Peter Bengtsson
Sounds like something you'd have to do with javascript by extending the admin interface's templates. Any other default values are best done by settings up signals for your User class. On a more general, yet important note, I would strongly advice against making your own User model unless you reall

Django Admin interface and filter by value

2010-01-22 Thread onorua
I have two models: class User(models.Model): LoginName = models.CharField('login', max_length=50) Email = models.EmailField('e-mail', blank=True) FirstName = models.CharField(max_length=50) LastName = models.CharField(max_length=50) IpAddress = models.IPAddressField(unique=Tru

Re: Django Admin interface crashes with.

2009-11-12 Thread Matt Schinckel
On Nov 13, 1:40 pm, Rick Caudill wrote: > I do have non-ascii data in my database.  That is allowed, right??? Yeah, in general. What appears to be happening here (and Karen is right, we need more to go on), but data that is being loaded into a DecimalField contains non-ascii data. Matt. -- You

Re: Django Admin interface crashes with.

2009-11-12 Thread Karen Tracey
On Thu, Nov 12, 2009 at 10:40 PM, Rick Caudill wrote: > I do have non-ascii data in my database. That is allowed, right??? > > Certainly. Perhaps if you gave a few more clues someone could help. What are you doing in the admin interface when the exception is raised? If the activity is obvious

Re: Django Admin interface crashes with.

2009-11-12 Thread Rick Caudill
I do have non-ascii data in my database. That is allowed, right??? On Thu, Nov 12, 2009 at 6:55 PM, Matt Schinckel wrote: > On Nov 13, 7:06 am, Rick Caudill wrote: > > Hi Everyone, > > > > This is my first time posting but I have been using Django for about a > > year now and love it. I am h

Re: Django Admin interface crashes with.

2009-11-12 Thread Matt Schinckel
On Nov 13, 7:06 am, Rick Caudill wrote: > Hi Everyone, > > This is my first time posting but I have been using Django for about a > year now and love it.  I am having one problem that I can't solve > though and it is taking too long so I thought I would ask and see if > someone can help me.  So I

Django Admin interface crashes with.

2009-11-12 Thread Rick Caudill
Hi Everyone, This is my first time posting but I have been using Django for about a year now and love it. I am having one problem that I can't solve though and it is taking too long so I thought I would ask and see if someone can help me. So I have a Admin interface that is crashing. The error t

Re: Django admin interface for Web service

2009-06-24 Thread Kusako
Tful > > http://bitbucket.org/david/django-roa/ > > Goulwen > > On Jun 23, 6:39 pm, Kusako wrote: > > > Hi- > > > I need to access an XMLRPC web service from the Django admin > > interface. Basically what I need is some create forms that will send > > data to

Re: Django admin interface for Web service

2009-06-24 Thread nautilebleu
django-roa seems to be the way to go if your service is RESTful http://bitbucket.org/david/django-roa/ Goulwen On Jun 23, 6:39 pm, Kusako wrote: > Hi- > > I need to access an XMLRPC web service from the Django admin > interface. Basically what I need is some create forms that will

Django admin interface for Web service

2009-06-23 Thread Kusako
Hi- I need to access an XMLRPC web service from the Django admin interface. Basically what I need is some create forms that will send data to the web service instead of storing to a database. As I'm somewhat new to Django I'm wondering about the best way to accomplish this. Should I j

Re: edit_inline and the Django Admin interface

2008-04-03 Thread cilynx
declare a model named TopicRelationship (see > below) rather than using "models.ManyToManyField". > > I'd like to allow users of the Django admin interface to edit the > relationships between topics from within any page about a Topic. > Typically this would be done u

Re: edit_inline and the Django Admin interface

2008-04-01 Thread [EMAIL PROTECTED]
so includes a field named "source" that describes the nature of the > relationship. Thus, I declare a model named TopicRelationship (see > below) rather than using "models.ManyToManyField". > > I'd like to allow users of the Django admin interface to edit the >

Django admin interface: problem with '../../../' in URLs and post_url.

2008-03-28 Thread Josh
I've made some changes to my admin interface to create a new set of pages for editing some of my models. Instead of just /admin/app/model/ id, I now also have /admin/dashboard/id which shows summary of the data for that object as well as giving some options for modifying some of it's ForeignKey/Ma

edit_inline and the Django Admin interface

2008-03-26 Thread ocamljohn
e below) rather than using "models.ManyToManyField". I'd like to allow users of the Django admin interface to edit the relationships between topics from within any page about a Topic. Typically this would be done using the "edit_inline" named argument in the call to "

Re: The Django admin interface optimized for iPhone/iPod touch

2007-11-11 Thread Jannis Leidel
Hi again! This is only a short reminder that I just released django-mobileadmin 0.2, the Django admin interface optimized for iPhone/iPod touch and other MobileSafari based devices. http://code.google.com/p/django-mobileadmin/ It brings the following new features and bugfixes: * full

Re: Customizing the Django admin interface

2007-11-09 Thread Joe
There's a few things to put together - urls.py needs something like (add a line before the normal admin line): (r'^admin/your_report/csv/$', 'yourproject.admin_views.report.csv_report'), (r'^admin/', include('django.contrib.admin.urls')), Then in your admin_views/report.py (or whatever you

Customizing the Django admin interface

2007-11-09 Thread GodOfGeeks
Hello all, I would like to add a new button to the searching page called "Convert to CSV". When I press the button, I want to covert the currently displayed results to a CSV (Comma separated values)format. if you could give me some guide lines about how to do this I would be really grateful. Wh

Re: The Django admin interface optimized for iPhone/iPod touch

2007-11-08 Thread Jannis Leidel
On 11/8/07, Josh <[EMAIL PROTECTED]> wrote: > > What a great idea! I don't (currently) have any devices that would be > able to use this, but I'll keep it in mind. The screenshots look > great too! Thanks Josh! I haven't tried the interface on other devices (e.g. Opera Mini) but it should work

Re: The Django admin interface optimized for iPhone/iPod touch

2007-11-08 Thread Josh
to you django-mobileadmin[1], something > which I desperately needed because using the Django admin interface is > just annoying with MobileSafari on the iPhone/iPod touch platform. > > So, "mobileadmin" is an alternative admin interface for Django for use > with the iPhone

The Django admin interface optimized for iPhone/iPod touch

2007-11-08 Thread Jannis Leidel
Hi Users, I'm very glad to introduce to you django-mobileadmin[1], something which I desperately needed because using the Django admin interface is just annoying with MobileSafari on the iPhone/iPod touch platform. So, "mobileadmin" is an alternative admin interface for Django f

Re: Can textarea attributes (rows, cols) be specified for django admin interface

2007-07-09 Thread ao
Hi, You can specify a custom css class in fields attribute in admin options: http://www.djangoproject.com/documentation/model-api/#admin-options Eg.: fields = ( ('Advanced', { 'classes': 'mycustomcssclass', 'fields': ('url', 'title', 'content', 'sites'), })... (this also wor

Can textarea attributes (rows, cols) be specified for django admin interface

2007-07-08 Thread Shankar
Hi all, Is it possible to specify HTML attributes (rows, cols) for textarea (TextField) widgets that appear in django's admin interface? If so, some pointers would be great. Thanks, Shankar --~--~-~--~~~---~--~~ You received this message because you are subscr

Re: Need Customized Forms which look very much like Django admin interface ...

2007-01-25 Thread tonemcd
Drat! - I went into auto-reply mode there. You're quite right, it's oldforms and I haven' updated it for the newforms framework (in fact, I don't know where to start). Tone On Jan 25, 4:25 pm, "Michel Thadeu Sabchuk" <[EMAIL PROTECTED]> wrote: > Hi! > > > See > > here:http://groups.google.com/g

Re: Need Customized Forms which look very much like Django admin interface ...

2007-01-25 Thread Michel Thadeu Sabchuk
Hi! > See > here:http://groups.google.com/group/django-users/browse_frm/thread/3328829... But this uses the oldforms library, it will be deprecated, isn't it? Is there a way to achieve the same with newforms? Best Regards, Michel --~--~-~--~~~---~--~~ You rec

Re: Need Customized Forms which look very much like Django admin interface ...

2007-01-25 Thread tonemcd
See here: http://groups.google.com/group/django-users/browse_frm/thread/3328829f1ed7f788/a980f983c5fc1bad Cheers, Tone On Jan 25, 8:01 am, "Praveen Swaminathan" <[EMAIL PROTECTED]> wrote: > I am trying to write a form which has multiple elements. One of them is a > Date field. How do I do it so

Need Customized Forms which look very much like Django admin interface ...

2007-01-25 Thread Praveen Swaminathan
I am trying to write a form which has multiple elements. One of them is a Date field. How do I do it so that it looks like an admin interface -- Thanks and Regards Praveen --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Gro

Retrieving attachments in Django Admin interface

2007-01-19 Thread o.drew
I'm writing an app, and I need to do the following: Once I've added an attachment, I need to be able to view it directly from the Django Admin interface (note: there's no public interface to this app). As I'm in development, I'm only using the Django dev. serv

Re: 'Site administration' heading in django admin interface

2005-10-27 Thread Emanuele
OK, solved! I copied contrib/admin/templates/admin/base.html to my local admin directory of templates and commented out this line: {% if title %}{{ title }}{% endif %} and that's it. Thanks a lot, Emanuele

Re: 'Site administration' heading in django admin interface

2005-10-27 Thread Ian Holsman
Have you tried modifying/copying the file $SRC//django/contrib/admin/templates/admin/base.html if you modifiy your project settings file you can override this by simply placing a file called admin/base.html into your own template directory (before the standard one) Cheers Ian On 10/28/05, Emanu

'Site administration' heading in django admin interface

2005-10-27 Thread Emanuele
Hi, I'm using django automatic admin interface as (only) web-interface for a little application already in production/testing [*]. I customized a bit the main admin page using "django-admin.py adminindex" output but I'm not able to remove the heading "Site administration" on top of it because it i