I'm trying to auto create certain milestones for each new project created.
the goal of this is enabling a set of permanent milestones for each project.
I'm a newbie in vTiger and would appreciate any help you can extend
You can create a Project Plan with a Project Milestone connected and when you want to create a new project you can duplicate it.
It will duplicate the Project and the elements related
Related
I want to change some fields in MS Project list when it creates the new project.
I tried to find in SharePoint but I couldn't find the templates used by the workflow.
I'm building a backend with some core-functionality app (which means, of course, a single DB for the app).
I'm looking for elegant way to create app for every new customer by "copying" some template (basic) app to be able modify every's customer app with specific customer's requirements.
For ex., I have some basic StoreApp in Django. It could have some basic features, models etc. Now, when some new customer wants to sign up, I want dynamically (not manually) create additional copy of the existing StoreApp (of course, under different name and its own DB), make initial migration for it, register it in the settings and so on. Lately, I want to customize this new app according to the customer's requirements. I'm just looking for a way to separate code maintenance for every existing app, but, as I mentioned before, not to create every app manually.
Any elegant way to do it? Some existing plugin for Django?
Thanks in advance,
Efi
I have already finished setting up my home, about and contact us page using bootstrap in one project. I wanted to use the django-oscar for the e-commerce configuration and use it in my products page.
Do I need to add another project or just create another app for django-oscar?
By the way I created another project and am currently stuck on how to connect it the first project I have made
You don't need to create another project for your product's page. You can easily install Oscar (which will install Django as a dependency). It supports a simple design built with Twitter's Bootstrap.
You can read this: Getting started with Oscar and How to customise templates for create home, about and contacts pages.
Hope I help!
I am completely new in Oracle APEX. I cannot understand why it is not possible to change the page title. It can be set while creating a new app using the wizard, but after finishing the process of creating the new application it is not possible to change existing page title.
Is there a way to change the page title after creating the app?
Yes it is possible:
In close-up:
I'm having difficulty understanding the django documentation. I have a django project that has many apps. I would like to create a new app that "overwrites" (not sure that is what I mean) the project app. I'm pretty sure this is a basic concept of django, so I would appreciate links to documentation or clarification.
E.g.
There is a template "stuff_tab.html" and a view for that template in the project.
In the projects stuff_tab.html template, there is the creation of a table.
I want to add a new column to the table using my app, but I don't want to edit the projects stuff_tab.html because it's not my project; I do want to use the code however, so that I'm not rewriting it again and creating a new template.
So basically, there exists a webpage, I want my app to add a single column to an existing table on the webpage, without changing the original webpages template (stuff_tab.html). I'll then need to do something similar to the view, so that I can add my script for what goes into that new column I'm creating.
Does this make sense?