* BlogsController.cs: sets ViewData["Avatar"]
* UserPost.aspx: magnify the header * UserPosts.aspx: beautyfull header * Profile.cs: A default Blog title to "<Username>'s blog"
This commit is contained in:
parent
1b7b3595e2
commit
495f859243
4 changed files with 27 additions and 13 deletions
|
|
@ -39,9 +39,10 @@ namespace Yavsc.Model.RolesAndMembers
|
|||
[DisplayName ("Blog visible")]
|
||||
public bool BlogVisible { get; set; }
|
||||
|
||||
private string blogTitle;
|
||||
[DisplayName ("Titre du blog")]
|
||||
[StringLength (255)]
|
||||
public string BlogTitle { get; set; }
|
||||
public string BlogTitle { get { return blogTitle==null? Name+"'s blog":blogTitle; } set { blogTitle = value; } }
|
||||
|
||||
[DisplayName ("Téléphone fixe")]
|
||||
[StringLength (15)]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue