~ubuntu-branches/ubuntu/utopic/lazygal/utopic

« back to all changes in this revision

Viewing changes to themes/test/image.thtml

  • Committer: Package Import Robot
  • Author(s): Michal Čihař
  • Date: 2012-05-14 10:26:46 UTC
  • mfrom: (1.2.10)
  • Revision ID: package-import@ubuntu.com-20120514102646-a8aqsadph5u2s2sf
Tags: 0.7.2-1
* New upstream release.
  - Fix video thumbnailing handling (Closes: #662118).
  - Fixes French translation (Closes: #664167).
* Clean generated files in clean phase (Closes: #671317).
* Bump standards to 3.9.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<div xmlns:py="http://genshi.edgewall.org/"
2
 
     id="image">
3
 
    <div id="image_img">
4
 
        <p><img src="$img_src" width="$img_width" height="$img_height" alt="Image $image_name" /></p>
5
 
    </div>
6
 
    <div id="image_caption">
7
 
        <ul id="image_caption_nontech">
8
 
            <li py:if="comment">$comment</li>
9
 
            <li>${_('Taken')} $image_date</li>
10
 
            <li py:if="original_link"><a href="$original_link">${_('Original picture')}</a></li>
11
 
        </ul>
12
 
        <ul class="image_caption_tech">
13
 
            <li>$image_name</li>
14
 
            <li py:if="camera_name">${_('Using')} $camera_name
15
 
                <py:if test="lens_name"> ${_('with')} $lens_name</py:if>
16
 
                </li>
17
 
            <li py:if="exposure">${_('Exposure')} $exposure</li>
18
 
            <li py:if="iso">${_('Sensitivity ISO')} $iso</li>
19
 
            <li py:if="fnumber">${_('Aperture')} $fnumber</li>
20
 
            <li py:if="flash">${_('Flash')} $flash</li>
21
 
            <li py:if="focal_length">${_('Focal length')} $focal_length</li>
22
 
        </ul>
23
 
    </div>
24
 
</div>