Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




Find all usable variables

emails
templates

hi, how find all usable variables in email alert template ? Of course, I read this documentation but, it does not contain all variables.

For exemple:

@(Model.TheItem.Created) == Creation date

@(Model.TheItem.CustomFields["CustomFieldName"].Entity.Data) == value of customField

So, I would like the list of variables or how find this list myself.

Thanks Cordially D.Ducatel

dducatel
· 1
dducatel
Replies (4)
helpful
0
not helpful

We are working on the complete list, which should be ready soon. What is you are after exactly?


Mark Wing
· 9108
Mark Wing
helpful
0
not helpful

I search to reproduce this change log (provide by gemini 4.0.1 in alert for update case) alt text

here is my code so far

<h2>Changed</h2>
<table>
   <tbody>
       <tr>
           <th>Item</th>
           <th>Title</th>
           <th>Assigned to</th>
       </tr>
     @foreach(var item in Model.TheItemsUpdated)   {   
      <tr>
         <td><a href="@(Model.GeminiUrl)project/@(item.ProjectCode)/@(item.Entity.ProjectId)/item/@(item.Entity.Id)">@(item.IssueKey)</a></td>
         <td>@(item.Title)</td>
         <td>@(item.ResourceNames)</td>
      </tr>
      <tr>
        <td colspan='3'>
            <table>
                <tr><td colspan='3'>Change Log</td></tr>
                <tr>
                    <td>Field</td>
                    <td>Previous Value</td>
                    <td>Current Value</td>
                </tr>
                @foreach(?????) <!-- I search this foreach and the 3 next value-->
                <tr>
                    <td>?????</td> 
                    <td>?????</td>
                    <td>?????</td>
                </tr>
                }
            </table>
        </td>
      </tr>
     }
   </tbody>
</table>

dducatel
· 1
dducatel
helpful
0
not helpful

The change log is not there at the moment. We are adding it to the next release (due next couple of months)


Mark Wing
· 9108
Mark Wing
helpful
0
not helpful

ok, wait and see Thanks


dducatel
· 1
dducatel