Not through the UI, but you could accomplish this with the API. There is a tool included in your VersionOne instance to help you make a couple simple API calls (which is all this would require). Here's what you do:
1. Open V1, find the Story in a grid, and take note of the ID you see (such as B-1234).
2. Open a browser to http://servername/v1instance/http.html
3. You will see a form in which you can run GET and POST API Queries
4. Find the system id of the story by typing in the URL box: rest-1.v1/Data/Story?where=Number='B-1234'&sel=Name
5. Click the GET button
6. In the lower large textarea, you will see xml like this:
<?xml version="1.0" encoding="UTF-8"?><Assets total="1" pageSize="2147483647" pageStart="0"><Asset href="/versionone8.1/rest-1.v1/Data/Story/1072" id="Story:1072"><Attribute name="Name">Customer List</Attribute></Asset></Assets>
7. Now copy the system id (above, it is 1072), and type into the URL box: rest-1.v1/Data/Story/1072?op=DeepCopy
8. Click the POST button
9. Again, you will get XML in that lower text box, which will tell you the ID of the new Story you just created (by copying the old one).
10.Now copy that new id (let’s say it’s 2000), and type into the url box: rest-1.v1/Data/Story/2000?op=MakeTemplate
11.Click the POST button
Assuming your POSTS went through with an HTTP 200 status, you should now have a template that is an exact copy of the original story. Enjoy.
-Maggie