homer09001 Posted June 3, 2009 Report Share Posted June 3, 2009 Small suggestion for the next update, giving admin the ability to attach a flightplan file to each route added, allowing a pilot to download the associated flightplan for that schedule and load it direct into FS. Ability to upload multiple with small label for each would be ideal to allow uploading plans for different addons LVL-D 767 PMDG etc. Quote Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted June 3, 2009 Administrators Report Share Posted June 3, 2009 Interesting, I'll consider it Quote Link to comment Share on other sites More sharing options...
packo88 Posted June 4, 2009 Report Share Posted June 4, 2009 that sounds like a great idea. That would suit my va perfectly Quote Link to comment Share on other sites More sharing options...
Lotus Posted June 4, 2009 Report Share Posted June 4, 2009 Couldn't those be entered as a download category? Quote Link to comment Share on other sites More sharing options...
homer09001 Posted June 4, 2009 Author Report Share Posted June 4, 2009 Yes, but I think giving the pilot a download link on the flight briefing would be better. Ideal solution would be a direect link to the route on SimRoute.com Quote Link to comment Share on other sites More sharing options...
RogerB Posted June 4, 2009 Report Share Posted June 4, 2009 Yeah, I have a flight plan section in my downloads. Quote Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted June 4, 2009 Administrators Report Share Posted June 4, 2009 Yes, but I think giving the pilot a download link on the flight briefing would be better. Ideal solution would be a direect link to the route on SimRoute.com And add the link in the notes section, that could be done. It would be alot to add a route upload section Quote Link to comment Share on other sites More sharing options...
selwynorren Posted June 4, 2009 Report Share Posted June 4, 2009 This is a really neat idea What I would like to do is make route navigation plan avalaible when the pilot for all teh flights he has bidded on. Would it ne possible to hide that as a download from teh main downloads section, and then just ingnore the, ignore hidden downloads when this page opens up? Might be a module that wold need to be added? Just an idea Quote Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted June 4, 2009 Administrators Report Share Posted June 4, 2009 You could possibly do it on the bids page, and have a link to simroute there? Quote Link to comment Share on other sites More sharing options...
homer09001 Posted June 4, 2009 Author Report Share Posted June 4, 2009 unless you can come up with some sort of agreement with the owner of SimRoutes then you can't link directly to the route page. Quote Link to comment Share on other sites More sharing options...
packo88 Posted June 5, 2009 Report Share Posted June 5, 2009 And add the link in the notes section, that could be done. It would be alot to add a route upload section Is it possible to display html in the notes section? Quote Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted June 5, 2009 Administrators Report Share Posted June 5, 2009 Yep, just type in plain ol' HTML Quote Link to comment Share on other sites More sharing options...
packo88 Posted June 5, 2009 Report Share Posted June 5, 2009 Nope, doesn't seem to be that easy. I put code into the notes and all I see when looking at the schedule notes is code... I wish it was that easy, but hopefully there is a way. It's just that I'm not smart enough to work it out. ??? Quote Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted June 5, 2009 Administrators Report Share Posted June 5, 2009 Weird, should be working. How does it show up on your template? Quote Link to comment Share on other sites More sharing options...
packo88 Posted June 6, 2009 Report Share Posted June 6, 2009 Not sure what you mean by that. This is what's in the schedule_results.tpl <?php echo ($route->route=='')?'':'<strong>Route: </strong>'.$route->route.'<br />' ?> <?php echo ($route->notes=='')?'':'<strong>Notes: </strong>'.$route->notes.'<br />' ?> Quote Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted June 6, 2009 Administrators Report Share Posted June 6, 2009 Change $route->note to: html_entity_decode($route->note); So: <?php echo ($route->route=='')?'':'<strong>Route: </strong>'.$route->route.'<br />' ?> <?php echo ($route->notes=='')?'':'<strong>Notes: </strong>'.html_entity_decode($route->notes).'<br />' ?> Quote Link to comment Share on other sites More sharing options...
packo88 Posted June 7, 2009 Report Share Posted June 7, 2009 Thanks Nabeel... Worked a treat. I learn something every day ;D Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.