I need to add several extra fields to an existing openERP module, i red somewhere else that i need to do it through the menus
First create the fields using Configuration -> Customization ->
Database Structure -> Fields
but i cant find that options or do i need to install something else so i have that functionality?
I also checked under the admin the techincal features, but nothing.
i have seen several post and other users directly add code
thanks!
Are you using opernerp 7?
Then you can add fields menu:
Settings -> Technical -> Database Structure -> Fields
You have to give rights to user, so add group Technical Features to user.
Thanks
Add the field in the DB structure.
Settings -> Technical -> Database Structure -> Fields
Add the field in the view
Settings -> Technical -> User Interface -> Views
In 7.0 you can find fields,
go to
Settings -> Technical -> Database Structure -> Fields.
Thanx
Related
Flask Admin has this really nice inline-editable option. Is there something similar in Django-Admin?
Yes, there is "list_editable". Unfortunately, this is poor usability and I much more prefere the flask-Admin approach:
editable fields are underlined
Click -> popup opens where you can edit
Save -> save via Ajax
How to add 2 attachment coloumns in single custom list Sharepoint 2013
You can attach multiple files to OOTB SharePoint custom list using that icon on the ribbon. But you have to enable attachments on the list's advanced settings List Settings >> Advanced Settings (under General Settings category).
These attachments will be shown in one column and you have to view the item to see attached files.
How do I add latest module in Opencart Version 2.0.0.0 Home page? I try many but can not success.
Please help me .
Login Admin:
Step 1: Extentsions -> Module:
Active module Lastest
Step 2: System -> Design -> Layout
Select Layout Home -> Edit
Add Module Lastet
Finish
To add latest products on home page follow below steps,
In your Open Cart admin go to Extensions > Modules and click Install near to "Latest" module.
Click Edit button at the right near to Latest Module.
Enter Module Name as latest-product (put any name to recognize it).
Give limit,height,width.
Make Status as Enabled.
Click on save button.
Now Go to System > Design > Layouts and edit Home layout.
Choose "Latest > latest-product" for Module , select Position and give Sort Order.
Click on save button.
I have recently setup Redmine and really like it. However, a feature which I really want is to set up Project completion in a percentage type facility (such as 5% 10% etc.) which is editable simply by the developer, not automated.
I know that you can create custom fields but something that I really want is that the column can show up on the "Homepage" / "Projects Page" to give a more detailed overview rather than going into each individual project.
Is there a way to do this with any plugins?
I am running Redmine 2.2.0
Any help with this would be greatly appreciated
You can't put custom fields on the project list page (or need to search for third-party solution), but you do can customize custom fields to look as gauge bar using Extended Fields plugin.
I want to add some settings to the Django admin interface. In particular I want to have fields set up to allow the administrator to enter POP3 mail settings.
Eg
[ ] Enable mail checking (checkbox)
[______] Mail server
[______] User name
[______] Password
etc
These fields will always exist and are not dependent on anything a front end user would enter.
Documentation seems to only talk about ModelAdmin, which I don't think is what I want.
This sounds like something would go in settings and you want to edit this from the admin. dbsettings is a django project that allows you to do this.
Since settings.py is just plain Python code, you can create your own custom settings and manipulate them from the admin. There are some guidelines if you do want to create custom settings.