Re: Create Mobile App from Django Template

2017-07-18 Thread carlos
Hi, but is he need stored information offline, the app save data (local stored) and then synchronize with the databases in django (web databases) How can you do something like that? On Mon, Jul 17, 2017 at 1:55 PM, Marsel Xhaxho wrote: > Hello, > > Django Rest Framework

Re: Create Mobile App from Django Template

2017-07-17 Thread Marsel Xhaxho
Hello, Django Rest Framework to the rescue. You can use this package to expose your database via a HTTP REST api and consume it via swift/java or any other language/platform you might think. This actually is the way web works nowadays, even for web apps.

Re: Create Mobile App from Django Template

2017-07-17 Thread Jani Tiainen
Hi, There are numerous ways to do that. You could create mobile version of your site or do called responsive design. That way site would be accessible with virtually any device. If you want to create native app you can write for example rest api to provide data for your app. 17.7.2017 21.54 "Meg

Create Mobile App from Django Template

2017-07-17 Thread Megan Zhao
My friend and I followed the Django tutorial to create a web blog where the professors can post their office hours and students can access to search and browse. We want to create a mobile app that contains the same info so that when the professors post on the web, the info in the app also update