├── .gitignore ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── Rakefile ├── lemon ├── __init__.py ├── admin.py ├── fields.py ├── forms.py ├── generic.py ├── locale │ └── ru │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── options.py ├── settings.py ├── sites.py ├── static │ └── lemon │ │ ├── css │ │ ├── base.css │ │ ├── changeform.css │ │ ├── changelist.css │ │ ├── default.css │ │ ├── ie.css │ │ ├── jquery.datetimepicker.css │ │ ├── jquery.ui.css │ │ └── reset.css │ │ ├── favicon.ico │ │ ├── images │ │ ├── asc.png │ │ ├── button-bg.png │ │ ├── changelist-footer-bg.png │ │ ├── changelist-footer-left.png │ │ ├── changelist-footer-right.png │ │ ├── changelist-header-bg.png │ │ ├── changelist-header-left.png │ │ ├── changelist-header-right.png │ │ ├── changelist-left.png │ │ ├── changelist-right.png │ │ ├── company-logo.png │ │ ├── desc.png │ │ ├── fieldset-header-bg.png │ │ ├── fieldset-header-left-bg.png │ │ ├── fieldset-header-right-bg.png │ │ ├── filter-selected-item.png │ │ ├── footer-bg.png │ │ ├── footer-logo.png │ │ ├── header-bg.png │ │ ├── icon_calendar.gif │ │ ├── icon_clock.gif │ │ ├── jquery-ui │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ ├── ui-bg_flat_20_666666_40x100.png │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_highlight-hard_35_ffcb5d_1x100.png │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ ├── ui-icons_007042_256x240.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── login-bg.png │ │ ├── login-footer.png │ │ ├── login-header.png │ │ ├── login-logo.png │ │ ├── logo.png │ │ ├── menu-bg.png │ │ ├── menu-first-bg.png │ │ ├── menu-first-border.png │ │ ├── menu-item-bg.png │ │ ├── menu-last-border.png │ │ ├── menu-open-down.gif │ │ ├── menu-open-down.png │ │ ├── menu-open-right.gif │ │ ├── menu-open-right.png │ │ ├── menu │ │ │ ├── articles.jpg │ │ │ ├── captcha.jpg │ │ │ ├── catalog.jpg │ │ │ ├── faq.jpg │ │ │ ├── feedback.jpg │ │ │ ├── flatpages.jpg │ │ │ ├── forum.jpg │ │ │ ├── gallery.jpg │ │ │ ├── guesbook.jpg │ │ │ ├── main_menu.jpg │ │ │ ├── money.jpg │ │ │ ├── news.jpg │ │ │ ├── podpiska.jpg │ │ │ ├── shop.jpg │ │ │ ├── sitemap.jpg │ │ │ ├── sites.jpg │ │ │ ├── templates.jpg │ │ │ ├── torg_catalog.jpg │ │ │ ├── user_grps.jpg │ │ │ ├── users.jpg │ │ │ ├── votes.jpg │ │ │ ├── weather.jpg │ │ │ └── weather_city.jpg │ │ ├── no.gif │ │ ├── pager-bg.png │ │ ├── submit-bg.jpg │ │ └── yes.gif │ │ └── js │ │ ├── jquery-ui.lemon.tabs.js │ │ ├── jquery.actions.js │ │ ├── jquery.changeform.js │ │ ├── jquery.changelist.js │ │ ├── jquery.datetimepicker.js │ │ ├── jquery.inlines.js │ │ ├── jquery.js │ │ ├── jquery.login.js │ │ ├── jquery.mainmenu.js │ │ ├── jquery.prepopulate.js │ │ ├── jquery.relatedobjectlookup.js │ │ ├── jquery.ui.js │ │ ├── json2.js │ │ └── script.js ├── templates │ ├── admin │ │ ├── 404.html │ │ ├── 500.html │ │ ├── actions.html │ │ ├── app_index.html │ │ ├── auth │ │ │ └── user │ │ │ │ ├── add_form.html │ │ │ │ ├── change_form.html │ │ │ │ └── change_password.html │ │ ├── base.html │ │ ├── base_site.html │ │ ├── change_form.html │ │ ├── change_list.html │ │ ├── date_hierarchy.html │ │ ├── delete_confirmation.html │ │ ├── delete_selected_confirmation.html │ │ ├── edit_inline │ │ │ ├── stacked.html │ │ │ └── tabular.html │ │ ├── filter.html │ │ ├── includes │ │ │ ├── fieldset.html │ │ │ └── inline_fieldset.html │ │ ├── index.html │ │ ├── login.html │ │ ├── pagination.html │ │ ├── prepopulated_fields_js.html │ │ ├── search_form.html │ │ └── submit_line.html │ ├── lemon │ │ └── main_menu.html │ └── registration │ │ ├── base.html │ │ ├── logged_out.html │ │ ├── password_change_done.html │ │ ├── password_change_form.html │ │ ├── password_reset_complete.html │ │ ├── password_reset_confirm.html │ │ ├── password_reset_done.html │ │ └── password_reset_form.html ├── templatetags │ ├── __init__.py │ ├── lemon_list.py │ └── main_menu.py ├── tests │ ├── __init__.py │ ├── admin.py │ └── models.py └── widgets.py ├── requirements.txt ├── setup.py ├── test_project ├── manage.py └── project │ ├── __init__.py │ ├── settings.py │ ├── templates │ └── pages │ │ └── default.html │ ├── urls.py │ └── wsgi.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/.gitignore -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/README.rst -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/Rakefile -------------------------------------------------------------------------------- /lemon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/__init__.py -------------------------------------------------------------------------------- /lemon/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/admin.py -------------------------------------------------------------------------------- /lemon/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/fields.py -------------------------------------------------------------------------------- /lemon/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/forms.py -------------------------------------------------------------------------------- /lemon/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/generic.py -------------------------------------------------------------------------------- /lemon/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /lemon/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /lemon/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/migrations/0001_initial.py -------------------------------------------------------------------------------- /lemon/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lemon/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/models.py -------------------------------------------------------------------------------- /lemon/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/options.py -------------------------------------------------------------------------------- /lemon/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/settings.py -------------------------------------------------------------------------------- /lemon/sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/sites.py -------------------------------------------------------------------------------- /lemon/static/lemon/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/css/base.css -------------------------------------------------------------------------------- /lemon/static/lemon/css/changeform.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/css/changeform.css -------------------------------------------------------------------------------- /lemon/static/lemon/css/changelist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/css/changelist.css -------------------------------------------------------------------------------- /lemon/static/lemon/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/css/default.css -------------------------------------------------------------------------------- /lemon/static/lemon/css/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/css/ie.css -------------------------------------------------------------------------------- /lemon/static/lemon/css/jquery.datetimepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/css/jquery.datetimepicker.css -------------------------------------------------------------------------------- /lemon/static/lemon/css/jquery.ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/css/jquery.ui.css -------------------------------------------------------------------------------- /lemon/static/lemon/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/css/reset.css -------------------------------------------------------------------------------- /lemon/static/lemon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/favicon.ico -------------------------------------------------------------------------------- /lemon/static/lemon/images/asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/asc.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/button-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/button-bg.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/changelist-footer-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/changelist-footer-bg.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/changelist-footer-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/changelist-footer-left.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/changelist-footer-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/changelist-footer-right.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/changelist-header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/changelist-header-bg.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/changelist-header-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/changelist-header-left.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/changelist-header-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/changelist-header-right.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/changelist-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/changelist-left.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/changelist-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/changelist-right.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/company-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/company-logo.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/desc.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/fieldset-header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/fieldset-header-bg.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/fieldset-header-left-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/fieldset-header-left-bg.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/fieldset-header-right-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/fieldset-header-right-bg.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/filter-selected-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/filter-selected-item.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/footer-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/footer-bg.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/footer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/footer-logo.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/header-bg.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/icon_calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/icon_calendar.gif -------------------------------------------------------------------------------- /lemon/static/lemon/images/icon_clock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/icon_clock.gif -------------------------------------------------------------------------------- /lemon/static/lemon/images/jquery-ui/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/jquery-ui/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/jquery-ui/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/jquery-ui/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/jquery-ui/ui-bg_flat_20_666666_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/jquery-ui/ui-bg_flat_20_666666_40x100.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/jquery-ui/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/jquery-ui/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/jquery-ui/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/jquery-ui/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/jquery-ui/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/jquery-ui/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/jquery-ui/ui-bg_highlight-hard_35_ffcb5d_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/jquery-ui/ui-bg_highlight-hard_35_ffcb5d_1x100.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/jquery-ui/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/jquery-ui/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/jquery-ui/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/jquery-ui/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/jquery-ui/ui-icons_007042_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/jquery-ui/ui-icons_007042_256x240.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/jquery-ui/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/jquery-ui/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/jquery-ui/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/jquery-ui/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/jquery-ui/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/jquery-ui/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/jquery-ui/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/jquery-ui/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/login-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/login-bg.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/login-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/login-footer.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/login-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/login-header.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/login-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/login-logo.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/logo.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu-bg.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu-first-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu-first-bg.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu-first-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu-first-border.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu-item-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu-item-bg.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu-last-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu-last-border.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu-open-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu-open-down.gif -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu-open-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu-open-down.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu-open-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu-open-right.gif -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu-open-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu-open-right.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu/articles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu/articles.jpg -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu/captcha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu/captcha.jpg -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu/catalog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu/catalog.jpg -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu/faq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu/faq.jpg -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu/feedback.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu/feedback.jpg -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu/flatpages.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu/flatpages.jpg -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu/forum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu/forum.jpg -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu/gallery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu/gallery.jpg -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu/guesbook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu/guesbook.jpg -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu/main_menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu/main_menu.jpg -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu/money.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu/money.jpg -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu/news.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu/news.jpg -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu/podpiska.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu/podpiska.jpg -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu/shop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu/shop.jpg -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu/sitemap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu/sitemap.jpg -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu/sites.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu/sites.jpg -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu/templates.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu/templates.jpg -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu/torg_catalog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu/torg_catalog.jpg -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu/user_grps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu/user_grps.jpg -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu/users.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu/users.jpg -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu/votes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu/votes.jpg -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu/weather.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu/weather.jpg -------------------------------------------------------------------------------- /lemon/static/lemon/images/menu/weather_city.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/menu/weather_city.jpg -------------------------------------------------------------------------------- /lemon/static/lemon/images/no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/no.gif -------------------------------------------------------------------------------- /lemon/static/lemon/images/pager-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/pager-bg.png -------------------------------------------------------------------------------- /lemon/static/lemon/images/submit-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/submit-bg.jpg -------------------------------------------------------------------------------- /lemon/static/lemon/images/yes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/images/yes.gif -------------------------------------------------------------------------------- /lemon/static/lemon/js/jquery-ui.lemon.tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/js/jquery-ui.lemon.tabs.js -------------------------------------------------------------------------------- /lemon/static/lemon/js/jquery.actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/js/jquery.actions.js -------------------------------------------------------------------------------- /lemon/static/lemon/js/jquery.changeform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/js/jquery.changeform.js -------------------------------------------------------------------------------- /lemon/static/lemon/js/jquery.changelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/js/jquery.changelist.js -------------------------------------------------------------------------------- /lemon/static/lemon/js/jquery.datetimepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/js/jquery.datetimepicker.js -------------------------------------------------------------------------------- /lemon/static/lemon/js/jquery.inlines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/js/jquery.inlines.js -------------------------------------------------------------------------------- /lemon/static/lemon/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/js/jquery.js -------------------------------------------------------------------------------- /lemon/static/lemon/js/jquery.login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/js/jquery.login.js -------------------------------------------------------------------------------- /lemon/static/lemon/js/jquery.mainmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/js/jquery.mainmenu.js -------------------------------------------------------------------------------- /lemon/static/lemon/js/jquery.prepopulate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/js/jquery.prepopulate.js -------------------------------------------------------------------------------- /lemon/static/lemon/js/jquery.relatedobjectlookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/js/jquery.relatedobjectlookup.js -------------------------------------------------------------------------------- /lemon/static/lemon/js/jquery.ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/js/jquery.ui.js -------------------------------------------------------------------------------- /lemon/static/lemon/js/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/js/json2.js -------------------------------------------------------------------------------- /lemon/static/lemon/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/static/lemon/js/script.js -------------------------------------------------------------------------------- /lemon/templates/admin/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/admin/404.html -------------------------------------------------------------------------------- /lemon/templates/admin/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/admin/500.html -------------------------------------------------------------------------------- /lemon/templates/admin/actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/admin/actions.html -------------------------------------------------------------------------------- /lemon/templates/admin/app_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/admin/app_index.html -------------------------------------------------------------------------------- /lemon/templates/admin/auth/user/add_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/admin/auth/user/add_form.html -------------------------------------------------------------------------------- /lemon/templates/admin/auth/user/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/admin/auth/user/change_form.html -------------------------------------------------------------------------------- /lemon/templates/admin/auth/user/change_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/admin/auth/user/change_password.html -------------------------------------------------------------------------------- /lemon/templates/admin/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/admin/base.html -------------------------------------------------------------------------------- /lemon/templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/admin/base_site.html -------------------------------------------------------------------------------- /lemon/templates/admin/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/admin/change_form.html -------------------------------------------------------------------------------- /lemon/templates/admin/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/admin/change_list.html -------------------------------------------------------------------------------- /lemon/templates/admin/date_hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/admin/date_hierarchy.html -------------------------------------------------------------------------------- /lemon/templates/admin/delete_confirmation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/admin/delete_confirmation.html -------------------------------------------------------------------------------- /lemon/templates/admin/delete_selected_confirmation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/admin/delete_selected_confirmation.html -------------------------------------------------------------------------------- /lemon/templates/admin/edit_inline/stacked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/admin/edit_inline/stacked.html -------------------------------------------------------------------------------- /lemon/templates/admin/edit_inline/tabular.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/admin/edit_inline/tabular.html -------------------------------------------------------------------------------- /lemon/templates/admin/filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/admin/filter.html -------------------------------------------------------------------------------- /lemon/templates/admin/includes/fieldset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/admin/includes/fieldset.html -------------------------------------------------------------------------------- /lemon/templates/admin/includes/inline_fieldset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/admin/includes/inline_fieldset.html -------------------------------------------------------------------------------- /lemon/templates/admin/index.html: -------------------------------------------------------------------------------- 1 | {% extends "admin/base_site.html" %} 2 | -------------------------------------------------------------------------------- /lemon/templates/admin/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/admin/login.html -------------------------------------------------------------------------------- /lemon/templates/admin/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/admin/pagination.html -------------------------------------------------------------------------------- /lemon/templates/admin/prepopulated_fields_js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/admin/prepopulated_fields_js.html -------------------------------------------------------------------------------- /lemon/templates/admin/search_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/admin/search_form.html -------------------------------------------------------------------------------- /lemon/templates/admin/submit_line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/admin/submit_line.html -------------------------------------------------------------------------------- /lemon/templates/lemon/main_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/lemon/main_menu.html -------------------------------------------------------------------------------- /lemon/templates/registration/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/registration/base.html -------------------------------------------------------------------------------- /lemon/templates/registration/logged_out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/registration/logged_out.html -------------------------------------------------------------------------------- /lemon/templates/registration/password_change_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/registration/password_change_done.html -------------------------------------------------------------------------------- /lemon/templates/registration/password_change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/registration/password_change_form.html -------------------------------------------------------------------------------- /lemon/templates/registration/password_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/registration/password_reset_complete.html -------------------------------------------------------------------------------- /lemon/templates/registration/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/registration/password_reset_confirm.html -------------------------------------------------------------------------------- /lemon/templates/registration/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/registration/password_reset_done.html -------------------------------------------------------------------------------- /lemon/templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templates/registration/password_reset_form.html -------------------------------------------------------------------------------- /lemon/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lemon/templatetags/lemon_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templatetags/lemon_list.py -------------------------------------------------------------------------------- /lemon/templatetags/main_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/templatetags/main_menu.py -------------------------------------------------------------------------------- /lemon/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/tests/__init__.py -------------------------------------------------------------------------------- /lemon/tests/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/tests/admin.py -------------------------------------------------------------------------------- /lemon/tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/tests/models.py -------------------------------------------------------------------------------- /lemon/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/lemon/widgets.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Django 2 | South 3 | -e . 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/setup.py -------------------------------------------------------------------------------- /test_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/test_project/manage.py -------------------------------------------------------------------------------- /test_project/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/test_project/project/settings.py -------------------------------------------------------------------------------- /test_project/project/templates/pages/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/test_project/project/templates/pages/default.html -------------------------------------------------------------------------------- /test_project/project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/test_project/project/urls.py -------------------------------------------------------------------------------- /test_project/project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/test_project/project/wsgi.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trilan/lemon/HEAD/tests.py --------------------------------------------------------------------------------