Metadata-Version: 1.1
Name: feedme
Version: 1.4.0
Summary: Food ordering management for django
Home-page: http://online.ntnu.no/feedme
Author: dotkom
Author-email: dotkom@online.ntnu.no
License: BSD License
Description: FeedMe
        ===========  
        
        A food ordering management system for Django.
        
        This project was started to help 'dotKom' with ordering food for their work nights.
        
        ### Install via pip
        `pip install git+https://github.com/dotKom/feedme.git`
        
        ### Manual install:
        
        0. Download any of the releases.
        1. Add "feedme" to INSTALLED_APPS  
         - `INSTALLED_APPS = (…, 'feedme', …)  
        2. Add the following to settings:  
         - `FEEDME_GROUP = 'feedme_users_group'`  
         - `FEEDME_ADMIN_GROUP = 'feedme_admins_group'`  
         - Add the groups in admin if neccessary.  
        3. Include feedme.urls into system urls.py
         - `url(r'^feedme/', include('feedme.urls'))`  
        
        ---
        ## Standalone setup
        
        This app supports a standalone setup, rather than integrating it into a current project.
        
        All you need is to create a `base.html` with these blocks
        
        - title
        - styles
        - submenu (nav)
        - content
        
        And use whatever template you want.
        The submenu included in feedme uses a bootstrap submenu, and some bootstrap elements and classes.
        
        Remember to set and serve static files.
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
