Giter Club home page Giter Club logo

django-crud-generator's Introduction

Setup:

  • Installation:
$ pip install -e [email protected]:jaanauati/django-crud-generator.git@master#egg=django-crud-generator
  • Add 'djangocrudgenerator' to the installed apps.
INSTALLED_APPS = (
    ...
    'yourwebapp',
    'djangocrudgenerator',
    ...
)

USAGE:

  • Supposing that you have created an application named 'yourwebapp', add the following to the project urlconf file (urls.py):
urlpatterns = patterns('',
    ...
    url(r'^yourwebapp/', include('yourwebapp.urls',namespace="yourwebapp")),
    ...
)

It's also necessary to include the templates directory of your application in the settings file:

TEMPLATE_DIRS = (
    ...
    'path/to/yourwebapp/templates',
)
  • Add an example model to the 'yourwebapp' app:
#models.py
class YourModel(models.Model):
    name=models.CharField(max_length=30)
    ...
    def __str__(self):
        return self.name
  • Now you can use the crud generator. For example, if you want generate a CRUD for the 'YourModel' model, you must run the following command:
$ python manage.py crudgen yourwebapp YourModel
  • To test the generated CRUD, first you must run the django development server:
$ python manage.py runserver

and then, go to http://localhost:8000/yourwebapp/yourmodel/list/page1/ in your web browser.

Enjoy!

django-crud-generator's People

Contributors

jaanauati avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

django-crud-generator's Issues

django-crud-generator is not a valid editable requirement. It should either be a path to a local project or a VCS URL

Getting the following error -

==> pip install -e [email protected]:jaanauati/django-crud-generator.git@master#egg=django-crud-generator
  • Error -
ERROR: [email protected]:jaanauati/django-crud-generator.git@master#egg=django-crud-generator is not a valid editable requirement. It should either be a path to a local project or a VCS URL (beginning with bzr+http, bzr+https, bzr+ssh, bzr+sftp, bzr+ftp, bzr+lp, bzr+file, git+http, git+https, git+ssh, git+git, git+file, hg+file, hg+http, hg+https, hg+ssh, hg+static-http, svn+ssh, svn+http, svn+https, svn+svn, svn+file).

cannot open .git/FETCH_HEAD

I have this error:

error: cannot open .git/FETCH_HEAD: Permiso denegado

Complete output from command /usr/bin/git fetch -q:


Cleaning up...

Someone can help me? I have a ssh key and my autentication is succesfull

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.