WebMediaPortal Design (1 Viewer)

FreakyJ

Retired Team Member
  • Premium Supporter
  • July 25, 2010
    4,024
    1,420
    Home Country
    Germany Germany
    woow looks awesome (y)
     

    sbir

    Portal Member
    January 12, 2010
    13
    10
    With all respect for Aredon's design I would personally like a more simplistic design. So.. I started work on one. This is the progress so far in different sizes..

    2012-03-28_2254.png

    2012-03-28_2255.png

    2012-03-28_2256.png
     

    pünktchen

    Portal Pro
    October 26, 2010
    537
    201
    Home Country
    Germany Germany
    Hopefully you're developing this as a skin-theme for 0.5 git version?!

    Sent from my MZ604 using Tapatalk
     

    sweborn

    Extension Designer
    June 8, 2007
    303
    214
    Home Country
    Sweden Sweden
    webmediaportal.jpg

    I would like to have a overview that looks like this. But I'm not a big shot on coding pages.
    I want to link every cover to the details page.
    Please can anyone give it a try.
    Here is my code so far:

    Code:
    @model IEnumerable<MPExtended.Services.MediaAccessService.Interfaces.Movie.WebMovieBasic>
    @{
        ViewBag.Title = "Movies";
    }
     
    @{
        if (@Model != null && @Model.Count(p => p.Title != "") > 0)
        {
        <h2>Movies</h2>
    
     
            foreach (var movie in Model)
          {
              <a href="https://www.team-mediaportal.com" target="_blank">
              
              <img src="@Url.Action("Image", "MovieLibrary", new { movie = movie.Id })" alt="" width="190" height="260"/></a>
                   
          }   
         
        }
    }

    Instead of this test line
    <a href="https://www.team-mediaportal.com" target="_blank">
    i think you should use something like this
    @Html.ActionLink(movie.Title, "Details", "MovieLibrary", new { movie = movie.Id }, null)
     

    valtam

    Portal Pro
    March 27, 2010
    94
    6
    Home Country
    New Zealand New Zealand
    I'm liking where this software is heading. As a user, I would love to see a whole collection of different themes to choose from out of the community :) Get coding folks!
     

    Oxan

    Retired Team Member
  • Premium Supporter
  • August 29, 2009
    1,730
    1,124
    Home Country
    Netherlands Netherlands
    You should be able to do something like this:
    Code:
    <a href="@Url.Action("Details", "MovieLibrary", new { movie = movie.Id })" target="_blank">
     

    pünktchen

    Portal Pro
    October 26, 2010
    537
    201
    Home Country
    Germany Germany
    Hey guys,
    here's an updated version of my "aredon mod" for latest git with skin support.
    (You need 0.5 development version of WebMediaPortal, which you have to compile yourself!!!)
     

    Attachments

    • www.zip
      292.8 KB

    Users who are viewing this thread

    Top Bottom