Browse Source

Update torrent search page

pjc 5 years ago
parent
commit
f7d1947042
1 changed files with 7 additions and 40 deletions
  1. 7
    40
      sections/torrents/browse.php

+ 7
- 40
sections/torrents/browse.php View File

@@ -180,12 +180,6 @@ View::show_header('Browse Torrents', 'browse');
180 180
           <td class="ft_cataloguenumber">
181 181
             <input type="search" size="19" name="cataloguenumber" class="inputtext smallest fti_advanced" placeholder="Catalogue number" value="<?Format::form('cataloguenumber')?>" />
182 182
           </td>
183
-        </tr>
184
-          <tr id="dlsiteid" class="ftr_advanced<?=$HideAdvanced?>">
185
-          <td class="label"><!--DLSite ID:--></td>
186
-          <td class="ft_dlsiteid">
187
-            <input type="search" size="12" name="dlsiteid" class="inputtext smallest fti_advanced" placeholder="DLSite ID" value="<?Format::form('dlsiteid')?>" />
188
-          </td>
189 183
         </tr>
190 184
         <tr id="year" class="ftr_advanced<?=$HideAdvanced?>">
191 185
           <td class="label"><!--Year:--></td>
@@ -209,56 +203,29 @@ View::show_header('Browse Torrents', 'browse');
209 203
           <td class="label">Release specifics:</td>
210 204
           <td class="nobr ft_ripspecifics">
211 205
             <select id="container" name="container" class="ft_container fti_advanced">
212
-              <option value="">Container</option>
206
+              <option value="">Format</option>
213 207
   <?  foreach ($Containers as $Container) { ?>
214 208
               <option value="<?=display_str($Container);?>" <?Format::selected('container', $Container)?>><?=display_str($Container);?></option>
215
-  <?  } ?>
216
-  <?  foreach ($ContainersGames as $Container) { ?>
217
-              <option value="<?=display_str($Container);?>" <?Format::selected('container', $Container)?>><?=display_str($Container);?></option>
218 209
   <?  } ?>
219 210
             </select>
220 211
             <select name="codec" class="ft_codec fti_advanced">
221
-              <option value="">Codec</option>
212
+              <option value="">License</option>
222 213
   <?  foreach ($Codecs as $Codec) { ?>
223 214
               <option value="<?=display_str($Codec); ?>"<?Format::selected('codec', $Codec)?>><?=display_str($Codec); ?></option>
224
-  <?  } ?>
225
-            </select>
226
-            <select name="audioformat" class="ft_audioformat fti_advanced">
227
-              <option value="">AudioFormat</option>
228
-  <?  foreach ($AudioFormats as $AudioFormat) { ?>
229
-              <option value="<?=display_str($AudioFormat); ?>"<?Format::selected('audioformat', $AudioFormat)?>><?=display_str($AudioFormat); ?></option>
230 215
   <?  } ?>
231 216
             </select>
232 217
             <select name="media" class="ft_media fti_advanced">
233
-              <option value="">Media</option>
218
+              <option value="">Platform</option>
234 219
   <?  foreach ($Media as $MediaName) { ?>
235 220
               <option value="<?=display_str($MediaName); ?>"<?Format::selected('media', $MediaName)?>><?=display_str($MediaName); ?></option>
236 221
   <?  } ?>
237 222
             </select>
238 223
             <select name="resolution" class="ft_resolution fti_advanced">
239
-              <option value="">Resolution</option>
224
+              <option value="">Assembly Level</option>
240 225
   <?  foreach ($Resolutions as $Resolution) { ?>
241 226
               <option value="<?=display_str($Resolution); ?>"<?Format::selected('resolution', $Resolution)?>><?=display_str($Resolution); ?></option>
242 227
   <?  } ?>
243 228
             </select>
244
-            <select name="language" class="ft_language fti_advanced">
245
-              <option value="">Language</option>
246
-  <?  foreach ($Languages as $Language) { ?>
247
-              <option value="<?=display_str($Language); ?>"<?Format::selected('language', $Language)?>><?=display_str($Language); ?></option>
248
-  <?  } ?>
249
-            </select>
250
-            <select name="subbing" class="ft_subbing fti_advanced">
251
-              <option value="">Subs</option>
252
-  <?  foreach ($Subbing as $Sub) { ?>
253
-              <option value="<?=display_str($Sub); ?>"<?Format::selected('subbing', $Sub)?>><?=display_str($Sub); ?></option>
254
-  <?  } ?>
255
-            </select>
256
-          </td>
257
-        </tr>
258
-        <tr id="subber" class="ftr_advanced<?=$HideAdvanced?>">
259
-          <td class="label"><!--Translation Group:--></td>
260
-          <td class="ft_subber">
261
-            <input type="search" spellcheck="false" size="65" name="subber" class="inputtext smaller fti_advanced" placeholder="Translation Group" value="<?Format::form('subber')?>" />
262 229
           </td>
263 230
         </tr>
264 231
         <tr id="size" class="ftr_advanced<?=$HideAdvanced?>">
@@ -287,9 +254,9 @@ View::show_header('Browse Torrents', 'browse');
287 254
               <option value="0"<?Format::selected('freetorrent', 0)?>>Normal</option>
288 255
             </select>
289 256
             <select name="censored" class="ft_censored fti_advanced">
290
-              <option value="">Censored?</option>
291
-              <option value="1"<?Format::selected('censored', 1)?>>Censored</option>
292
-              <option value="0"<?Format::selected('censored', 0)?>>Uncensored</option>
257
+              <option value="">Original?</option>
258
+              <option value="1"<?Format::selected('censored', 1)?>>Original</option>
259
+              <option value="0"<?Format::selected('censored', 0)?>>Not Original</option>
293 260
             </select>
294 261
           </td>
295 262
         </tr>

Loading…
Cancel
Save