Re: How to display ipconfig /all in template html django

2017-09-07 Thread Ramin Farajpour Cami
ly no shortage of ways to format and render this > stuff), and you'd be the one to decide which is best for your desired > layout. > > No simple answer I'm afraid :-(. > > Regards, > > Bernd. > > Ramin Farajpour Cami wrote: > > Thanks Bernd, > >

Re: How to display ipconfig /all in template html django

2017-09-07 Thread Ramin Farajpour Cami
; templates context. > > Good luck. But if you want better help, try and be more clear about what > you want and how you envisage achieving it I guess, share a description or > sample of your template and view etc. > > Regards > > Bernd. > > Ramin Farajpour Cami

How to display ipconfig /all in template html django

2017-09-07 Thread Ramin Farajpour Cami
Hi, Hi, I going to show output command "ipconfig /all" in html django template but i have string uncomfortable, for example : i going to show this in html : Windows IP Configuration PPP adapter VPN: Connection-specific DNS Suffix . : Link-local IPv6 Address . . . . . : fe80::50a6:e

how to access SQLAlchemy to Django Model ?

2015-12-21 Thread Ramin Farajpour Cami
Basic Models (Django and SQLAlchemy): A basic Django model looks something like this: class Person(models.Model): first_name = models.CharField(max_length=30) last_name = models.CharField(max_length=30) The equivalent SQLAlchemy model with declarative base looks like this: from sqlalchemy import