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.
Related
I would like to add some custom filter on Web Forms for Marketers Form Report, is it possible?
For example: My contact page contains Name,Email,Phone Number,Request Type,Description.
In this page I would like to see the data filter by Request Type,Date.
Web Forms for Marketers Form Report is Sitecore SPEAK application. It means that you are able to customize and extend it using SPEAK framework. SPEAK is quite good extendable and you are able to customize any SPEAK application without any dirty tricks.
So, general answer is YES, it is possible.
However, I am not sure about efforts that you will need to do it. And will it enough for you to use only existing business components library, or you will need to create your own components.
I have a django project with 3 models. The user, the project (in which he works on) and the Change (which logs start and finish working time as well as the project and user).
I want to export a custom CSV report. Ex: total working hours of users per project, total hours devoted to a project etc. This means that there are some calculations to be done across models before exporting. So far I have found out how to export in CSV just filtered model entries, which isn't very helpful. I also found some tools online but most of them are outdated.
Can anyone point me to a direction or give me advice or links where I can learn more? Thank you.
Couple of ways to do this. You can use django-report-builder which is a pretty neat tool.
Other ways are using custom views to admin site (check Django AdminPlus), overwrite queryset and use custom admin action etc.
In my project I need to add a lot of custom entities to Typo3 CMS.
Eg. I need to have Buildings, Building Companies, Architects, Certifications, and so on.
What is the common approach for doing this?
Should I develop a new extension?
How can I then have a custom backend for managing these entities? Eg. in the Buildings admin page I want to be able to add a new Building also associating one or more Architects to it. Is it feasible? How?
Can I create a custom backend field for looking up Architects in the Buildings admin page? (eg. something like StackOverflow tags system, a token input field which looks up for items in Architects table in real-time while editing a Building)
To map a business model into Typo3 I prefer to build an extension for that.
On the one hand you have the maximum flexibility by programming in PHP with the help of the Typo3 framework and on the other hand most of the backend management pages come in easy when using the standard MVC + TCA structure of Typo3 Extbase extensions (if it is your first try with Extbase you might want to have an Extbase book at hand).
You can have a look at the Typo3 TCA page to see which standard backend field types are available - there are shown a lot of example configurations. As in your case you might want to use a select field with property "size" > 1 and property "maxitems" > 1 to describe the relation between buildings and architects. As for the architects filter feature you might also want to add the property "enableMultiSelectFilterTextfield" as shown in this example.
I am newbie to the magento. I want to develop my own custom template in magento. Where I would like to have some custom settings from admin panel to change the looks of the theme like change colour or to upload logo etc.. So can someone kindly tell me is there any documentation available or any referenced link? Any help and suggestions will be really appreciable.
Have a look at this link http://www.silksoftware.com/magento-module-creator
Near the bottom you have the Magento System Configuration section, with this you can create a module to handle all your admin settings for your entire site. This is by far the best way to learn how to setup modules, especially complicated ones that involve admin settings.
There will however be plugins for what you want so check on Magento connect first, and there are some free themes for older Magento installs that include similar custom plugins for customizing the themes you can use as a potential reference if you can dig them up (sorry I don't have any examples to hand as I used bought themes to learn from).
I want to create a form with two controls(radio button and file upload), with Web Forms for Marketers in Sitecore.
Something like this:
Yes
No
(File Upload here) (Browse button here)
If the user checks Yes radio button, the file upload will become mandatory. Otherwise it's not a mandatory field.
How do I make this possible? The Sitecore documentation only has very limited information. I was trying to create a user control and implement validate user control class, but I was stuck because have no idea with the functions I need to override.
Suggestions?
From my personal experience with custom actions on Webforms for Marketeers forms I would say this would typically be a use case in which you should develop your own form and not use Webforms for Marketeers functionality. With alot of coding / configuring you should probably in the end be able to set it up like the description you give, but I think you would be better of creating a form yourself in this scenario. I have been able to do alot with Webforms but there certainly are some constraints eventhough alot is possible.