Hello Amit, Arches is built on the Django framework, which, yes uses a very different url system than you are expecting. URLs don't simply resolve to the location of an html file, they put to a "view", which is a python class that is passed to a template html file (which has it's own js file in arches). Here's some of the official Django documentation that deals with urls: https://docs.djangoproject.com/en/1.9/topics/http/urls/
You'll find the html that you are looking for in templates/views/forms/, but you'll have to look in the virtualenv arches_hip module, not in your app. Just take the template in arches_hip that you want to modify, copy it, and paste it into the corresponding location in your app. (If you want to modify the js as well, you'll find it in media/js/views/forms/.) Then you can modify the new files in your app, and Django will use them instead of the defaults inside the virtual environment. Good luck! Adam On Mon, Jul 11, 2016 at 4:47 AM, amit ray <[email protected]> wrote: > Hello, > I'm a newbie to Arches environment, working on an Arches project. The > arches default installation site is working correctly.But I want some > changes to the default Arches installation files like location.htm and > other. I can locate some HTML files but for others, I'm not able to find > the exact path to the directory as we do on a general site. > > Is Arches uses a different system to arrange URLs? For example, consider > this URL > http://10.2.2.33:8000/resources/HERITAGE_RESOURCE_GROUP.E27/district_classification/ > > > I tried to locate the resources directory or district_classification > directory in my server but unable to locate this. I want to change the > classification HTML file there. > Any Help will be appreciated. > > Thanks > Amit > > -- > -- To post, send email to [email protected]. To unsubscribe, > send email to [email protected]. For more > information, visit https://groups.google.com/d/forum/archesproject?hl=en > --- > You received this message because you are subscribed to the Google Groups > "Arches Project" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- -- To post, send email to [email protected]. To unsubscribe, send email to [email protected]. For more information, visit https://groups.google.com/d/forum/archesproject?hl=en --- You received this message because you are subscribed to the Google Groups "Arches Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
