Re: New to django

2017-07-19 Thread Stefano Probst
Hi!

New to Django? Read the Getting started 
.

Am Mittwoch, 19. Juli 2017 13:04:50 UTC+2 schrieb dkushwah5:
>
> I want to connect my bootstrap website with django's database. Please tell 
> me how to do it.
>

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/639bb6be-c112-42da-a5c5-f6831ac31770%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Django URLS

2016-11-18 Thread Stefano Probst
Hi,

I think you search something like django-subdomains 
.

regards
Stefano

Am Donnerstag, 17. November 2016 19:17:37 UTC+1 schrieb Lekan Wahab:
>
> If i have a url like *fruits.com*, does anyone know how i can write my 
> subdomain urls in django to be *apple.fruits.com* instead of *
> fruits.com/apple* ?
>
>

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/85804fd4-92f8-4ae3-af4e-353e232e1093%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: question about returning file (pdf,image,zip...) in a request that made from temporary URL

2016-10-31 Thread Stefano Probst
You could use a whole deployment setup. Forward Django though nginx by 
using WSGI (Gnuicorn, etc). Then everything should work.

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/5df18a18-7656-4741-bb8a-948db39b8bcd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: question about returning file (pdf,image,zip...) in a request that made from temporary URL

2016-10-29 Thread Stefano Probst

Hello,
you can use X-Accel-Redirect. See django-downloadview 
 
and "Nginx, Django, and X-Accel-Redirects". 


Best regards

Am Freitag, 28. Oktober 2016 16:59:53 UTC+2 schrieb ali Eblice:
>
> hello
> think of a downloading website:
> when we create a temporary link in django and map it to actual URL or file 
> path in database like this:
>
> id -- temporary_URL -- origin_URL  --  file_path
>
> so when a user used a temporary URL and directed to some view , how should 
> i return that file from that view for user to be able to download that file?
> i know that i can use "FileResponse"  or  "StreamingHttpResponse" but in 
> django documentation says that we should use these for short-lived requests 
> but downloading a big file can take long time, so what should i do ?
> i appreciate any help and idea 
>

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/4577820d-6643-400d-9746-62b46b394163%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Real-Time Data Streaming

2016-07-19 Thread Stefano Probst
Hi, 
Maybe you can use channels  to 
push data via websockets to your client and plot the new data points via 
some JS library.


Am Montag, 18. Juli 2016 21:49:48 UTC+2 schrieb pvmer...@gmail.com:
>
> Hello Everyone,
>
>I am working on a project where I want to display/plot graphs in 
> real-time using Django, nodejs, Socket.io, Redis. Can someone please post a 
> tutorial on real-time application with Django?
>
> Regards,
>
> PM 
>

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/570cc31c-485a-4391-8d9c-8b2da9d57577%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Django Live video streaming from ffserver

2016-05-26 Thread Stefano Probst
Hi,
eventual something like X-Accel-Redirect can help to do this without a 
performance penalty. See 
https://wellfire.co/learn/nginx-django-x-accel-redirects/ Serving protected 
upstream services


Am Donnerstag, 26. Mai 2016 13:44:02 UTC+2 schrieb Jahan Balasubramaniam:
>
> Hi
>
> I have setup a ffserver which provides live video stream in the local 
> network over http.
>
> What I want is django app which enables me to do some authentication stuff 
> and stream from local network to outside world.
>
> I have more than decent amount of knowledge in Django and have done dozen 
> projects using django framework.
>
> I m very much clueless and even wondering how to begin with this.
>
> If anyone with knowledge on how to accomplish this sort of stuff could 
> provide some guidance would be helpful.
>
> Even just a hint or starting tip off would be of great help.
>
> Regards
> Jahan
>

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/8390ae5f-70d4-4b6e-947a-06867b4c5429%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Best Practices for transferring email form data to web server

2015-08-29 Thread Stefano Probst
You can disable the CSRF-protection via csrf_exempt 
.
 

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/0076c557-da04-42fa-9574-2b57a20db540%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Static version of a Django website ?

2015-08-14 Thread Stefano Probst
Hi,

i only know a generic way via HTTrack . If you 
want a copy of the rendered HTML.

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/1f00c270-cff0-4a2d-8662-4561baa9547c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Easy to use graphical reporting tools for SQL

2015-07-21 Thread Stefano Probst
Know the "non-developers" SQL? I guest not, but if you can try MySQL 
workbench ..

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/6a7f0ba0-137a-4160-8855-a4eb2e04adc1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Email Middleware

2015-07-09 Thread Stefano Probst
I implement the software now as a custom email backend 
.
 
My backend manipulate the content of the message and act as wrapper for the 
real mail backend.

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/f3de37c4-bcd6-401e-88c5-19a7216d3f73%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Email Middleware

2015-07-08 Thread Stefano Probst
Hello,
i search for a universal way to modify the content of a mail before send 
it. Is there a middleware like system for mails?
Background: I want to program a system which encrypt outgoing mails via PGP.

Best regard
Stefano

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/6c987d84-2205-4e4d-a131-0d3cbf4fd923%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Recommendations for hosting service?

2015-01-07 Thread Stefano Probst
OK, i just see you need 100GB. At Uberspace you have only 10GB for Data 
(excl. OS, etc).

Am Mittwoch, 7. Januar 2015 18:25:44 UTC+1 schrieb Stefano Probst:
>
> I use DigitalOcean <https://www.digitalocean.com/> (VPS) & Uberspace 
> <https://uberspace.de/> (German, shared hosting, support Django 
> <https://wiki.uberspace.de/cool:django>).
>

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/5f0b2c35-2b65-44d0-92c7-a6d843114090%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Recommendations for hosting service?

2015-01-07 Thread Stefano Probst
I use DigitalOcean  (VPS) & Uberspace 
 (German, shared hosting, support Django 
).

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/0662f26e-c40f-4dda-800c-0a8227b9c999%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Two Django projects with common models and business logic

2014-12-25 Thread Stefano Probst
If you use Git as VCS: Use submodules 
. Submodules allow 
foreign repositories to be embedded within a dedicated subdirectory of the 
source tree, always pointed at a particular commit. Quote from the link:

> It often happens that while working on one project, you need to use 
> another project from within it. Perhaps it’s a library that a third party 
> developed or that you’re developing separately and using in multiple parent 
> projects. A common issue arises in these scenarios: you want to be able to 
> treat the two projects as separate yet still be able to use one from within 
> the other.
>

Am Mittwoch, 24. Dezember 2014 17:26:22 UTC+1 schrieb Javier Guerra:
>
> On Wed, Dec 24, 2014 at 11:18 AM, andy  
> wrote: 
> > Thank you. Since it's only me that'd be using the apps do can I bypass 
> the 
> > 'deploy using pip' thing and somehow directly use it in my other 
> projects? 
>
>
> you could just set links or add to your `sys.path` list, but that 
> makes it hard not to break one project when developing the other. 
>
> a little better is to use your version control system, so now you have 
> (at least) three projects: project A, project B and a common app, each 
> on a different repository.  each server would checkout not only the 
> project-specific code but also the common app 
>
> -- 
> Javier 
>

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/76c8a411-840c-43a4-a45d-551bf984e11c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: BigInt / Long for Auto Incrementing PK

2014-08-01 Thread Stefano Probst
Hi, you can use a bigintegerfield 
 
and set it as primary-key 
.

Am Donnerstag, 31. Juli 2014 17:34:17 UTC+2 schrieb Nicholas Haggmark:
>
> Hi Guys,
>
> I need to create a couple of tables with 64-bit int data type primary 
> keys.  I've been googling around and I haven't seen anything really recent 
> in regards to this.  Does Django 1.7 support auto incrementing 64-bit int 
> primary keys?  If not out of the box, does anyone have a reliable solution 
> for this?
>
> Thanks!
>
> Nick Haggmark
>

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/165fba9c-a459-43ae-b5e3-876bfc5d7c39%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Error related to googlebot?

2014-01-26 Thread Stefano Probst
Hi,
have you try it with "open a Page like Google" ( 
https://support.google.com/webmasters/answer/158587 )?

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/75168192-6ed8-4b9d-a185-3d6447a840ce%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: django debugger

2013-11-06 Thread Stefano Probst
Of course you can use the 
toolbaralso. The toolbar is 
a app witch run 'inside' your Project. With the 
eclipse debugger you can set breakpoints and run your program step by step. 
This are different types of debugging,
The 
installationof
 Django Debug Toolbar is really easy. If you use Eclipse already its also 
easy to debug with it, but if Eclipse isn't configured for your project you 
need some time to get it work.

I would say try booth.

best regards

PS:
Some Eclipse links:
Eclipse 
PyDev  - The Python plugin for Eclipse
Aptana  - Eclipse with preinstalled Python plugins 
/ preconfigured 

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/d7f171c1-c251-4dfd-84fa-92fcdd560f3e%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: django debugger

2013-11-06 Thread Stefano Probst
If you use Eclipse, you can set Breakpoints and go forward step by step.

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/d9a3d8af-02df-48c5-9db8-f0789bb28b5a%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: django security

2013-09-06 Thread Stefano Probst
Hi!
Do you mean something like the 
documentation
?

Best regards 

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Looking for a session cart

2013-01-21 Thread Stefano Probst

But this is what 
"sessions"<https://docs.djangoproject.com/en/1.4/topics/http/sessions/>does. By 
default a session is saved in the database but you can move it 
also in a cache 
(https://docs.djangoproject.com/en/1.4/topics/http/sessions/#using-cached-sessions
 
). Memcached is realy performant.
You can write by write "request.session['fav_color'] = green" and read by 
write "request.session['fav_color']" or "fav_color = 
request.session.get('fav_color', 'red')" then "red" is the default value if 
"fav_color" is'nt set.
Am Montag, 21. Januar 2013 15:44:47 UTC+1 schrieb frocco:
>
> I found django-cart, but it seems to write to the database.
> I want to keep items in session until they checkout.
>
> Thanks for the link to Shop, I will take a look at that also.
>
> On Monday, January 21, 2013 8:54:00 AM UTC-5, Stefano Probst wrote:
>>
>> Did you mean something like 
>> "sessions"<https://docs.djangoproject.com/en/1.4/topics/http/sessions/>(
>> example<https://docs.djangoproject.com/en/1.4/topics/http/sessions/#examples>
>> )?
>>
>> Am Montag, 21. Januar 2013 13:50:13 UTC+1 schrieb frocco:
>>>
>>> Hello,
>>>
>>> I am learning django and want to port an app over from PHP.
>>> In PHP, I use a session cart to store items purchased.
>>> Is there anything for django?
>>>
>>

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



Re: Looking for a session cart

2013-01-21 Thread Stefano Probst
There is also a finished Shop  application 
if you want looking how other solve this Problem.

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



Re: Looking for a session cart

2013-01-21 Thread Stefano Probst
Did you mean something like 
"sessions"(
example
)?

Am Montag, 21. Januar 2013 13:50:13 UTC+1 schrieb frocco:
>
> Hello,
>
> I am learning django and want to port an app over from PHP.
> In PHP, I use a session cart to store items purchased.
> Is there anything for django?
>

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



Re: Correct way to specifiy database-level column defaults

2013-01-10 Thread Stefano Probst
An example:

> from django.db import models
> from django.utils.datetime_safe import datetime
> class URL(models.Model):
> full_URL = models.URLField(max_length=400)
> short = models.CharField(max_length=8)
> date = models.DateTimeField(default=datetime.now)


Django fill in the default value when it saves the entry.

Am Donnerstag, 10. Januar 2013 15:04:47 UTC+1 schrieb 
john.w...@tpiengineering.com:
>
> What is the best way to specify a database level default value with 
> Django?  If I want a timestamp column to default to the SQL function now(), 
> is there an accepted way to make it happen?  Or to default a boolean column 
> to True?  I notice that when I call *manage.py sqlall* I don't see any *
> DEFAULT* values specified in the generated queries for Postgres.
>

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



Re: Settings in Pythoncode

2013-01-09 Thread Stefano Probst
The answer:
I compare my variable with the other setting-variables. All other variables 
are uppercases (-> constant). When I write my variable big, it works.

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



Settings in Pythoncode

2013-01-09 Thread Stefano Probst
Hi!
I want to access variables in my code like in the 
docs.
 
I have a code like the following in settings.py:

> codec_baseString = "...XYZ:::"
>
In a other file (common.py):

> from django.conf import settings
> def num2short(num, baseString = settings.codec_baseString):
> 
> 

I get the error "'Settings' object has no attribute 'codec_baseString' ". 
In the docs stand:

> Note that django.conf.settings isn't a module -- it's an object. So 
> importing individual settings is not possible:
>
Refer this sentence to the example after the sentence or to my plan with my 
own variable?
Thanks.

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



Re: Formset - PlainTextOutput-Widget?

2012-11-28 Thread Stefano Probst

I think i have found a TextOutput-Widget :-) Writing your own django 
widget<http://www.copyandwaste.com/posts/view/writing-your-own-django-widget/>
Am Dienstag, 27. November 2012 15:44:24 UTC+1 schrieb Stefano Probst:
>
> <http://i.imm.io/N7m1.png>
> Hi!
> I have a Table with intitialdata from my database. It is implement with a 
> formset. Every row i a form. Now I want to show a text (names) per row. The 
> right in the picture (in black) exist, the red is to do. It should not be 
> an TextInput-widget, it should be a plain text. Like a 
> PlainTextOutput-Widget.
> Does anyone have tips for me?
>

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



Formset - PlainTextOutput-Widget?

2012-11-27 Thread Stefano Probst



Hi!
I have a Table with intitialdata from my database. It is implement with a 
formset. Every row i a form. Now I want to show a text (names) per row. The 
right in the picture (in black) exist, the red is to do. It should not be 
an TextInput-widget, it should be a plain text. Like a 
PlainTextOutput-Widget.
Does anyone have tips for me?

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