forked from sonata-project/SonataAdminBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
65 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
* Django Project (http://www.djangoproject.com/) | ||
|
||
The Admin class architecture is inspired by the Django Admin. | ||
You can find more information about the django admin definition | ||
here : http://www.djangobook.com/en/1.0/chapter06/ | ||
|
||
|
||
* FamFamFam (http://www.famfamfam.com/lab/icons/silk/) | ||
|
||
The icon used the famous icons library by Mark James. | ||
|
||
licence : http://creativecommons.org/licenses/by/2.5/ | ||
|
||
* jQuery (http://jquery.com/) | ||
|
||
The javascript library used to integrate Ajax and GUI interactions. | ||
|
||
* qTip (http://craigsworks.com/projects/qtip/) | ||
|
||
The javascript library used to display notification and errors messages. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
The MIT License | ||
|
||
Copyright (c) 2010 [email protected] | ||
Copyright (c) 2010-2011 [email protected] | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,19 @@ | ||
Prototype to easily create uniform backend application | ||
====================================================== | ||
|
||
## Installation | ||
Please read the related documentation in the docs folder. | ||
|
||
### Add BaseApplicationBundle to your src/Bundle dir | ||
*WARNING* : this is a prototype, and not a final/stable bundle. | ||
|
||
git submodule add [email protected]:sonata-project/BaseApplicationBundle.git src/Bundle/BaseApplicationBundle | ||
- code can be irrelevant | ||
- code might not use properly Symfony2 or Doctrine components | ||
- code might change with no notices. | ||
|
||
### Add EasyExtendsBundle to your application kernel | ||
|
||
// app/AppKernel.php | ||
public function registerBundles() | ||
{ | ||
return array( | ||
// ... | ||
new Bundle\BaseApplicationBundle\BaseApplicationBundle(), | ||
// ... | ||
); | ||
} | ||
TODO : | ||
|
||
|
||
### Add this line into your config.yml file | ||
|
||
base_application.config: ~ | ||
- use the admin class to register route information | ||
- save filter criteria | ||
- export list | ||
- edit group field | ||
- add inline editing (Invoice with InvoiceLine) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{# | ||
This file is part of the Sonata package. | ||
(c) Thomas Rabaix <[email protected]> | ||
For the full copyright and license information, please view the LICENSE | ||
file that was distributed with this source code. | ||
#} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{# | ||
This file is part of the Sonata package. | ||
(c) Thomas Rabaix <[email protected]> | ||
For the full copyright and license information, please view the LICENSE | ||
file that was distributed with this source code. | ||
#} | ||
|